aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
Diffstat (limited to 'source')
-rwxr-xr-xsource/pyAggr3g470r.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/pyAggr3g470r.py b/source/pyAggr3g470r.py
index 7a6e450e..79a60f9e 100755
--- a/source/pyAggr3g470r.py
+++ b/source/pyAggr3g470r.py
@@ -62,7 +62,7 @@ def error_404(status, message, traceback, version):
"""
Display an error if the page does not exist.
"""
- message = "<pError %s - This page does not exist.</p>" % status
+ message = "<p>Error %s - This page does not exist.</p>" % status
tmpl = lookup.get_template("error.html")
return tmpl.render(message=message)
bgstack15