summaryrefslogtreecommitdiff
path: root/plinth.py
diff options
context:
space:
mode:
authorJames Vasile <james@hackervisions.org>2011-03-09 13:46:13 -0500
committerJames Vasile <james@hackervisions.org>2011-03-09 13:46:13 -0500
commitabc92385da046d896e9b1b94d72ef29eca70527e (patch)
treeba0dede7be5a01fb71991bebf598e25dd9f04cc5 /plinth.py
parent18b9df74f9fb7e19e708120873e7244379783ecf (diff)
added link to bug tracker
Diffstat (limited to 'plinth.py')
-rwxr-xr-xplinth.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/plinth.py b/plinth.py
index 2a4c089..6b66e43 100755
--- a/plinth.py
+++ b/plinth.py
@@ -23,8 +23,10 @@ def error_page_404(status, message, traceback, version):
def error_page_500(status, message, traceback, version):
cfg.log.error("500 Internal Server Error. Trackback is above.")
- more="""<p>This is an internal error and not something you caused or can fix. You are welcome to report it.
- TODO: add link to bug tracker.</p>"""
+ more="""<p>This is an internal error and not something you caused
+ or can fix. Please report the error on the <a
+ href="https://github.com/jvasile/Plinth/issues">bug tracker</a> so
+ we can fix it.</p>"""
return error_page(status, message, "<p>%s</p><pre>%s</pre>" % (more, "\n".join(traceback.split("\n"))))
class Root(plugin_mount.PagePlugin):