diff --git a/plinth.py b/plinth.py index 2a4c089b4..6b66e4381 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="""

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.

""" + more="""

This is an internal error and not something you caused + or can fix. Please report the error on the bug tracker so + we can fix it.

""" return error_page(status, message, "

%s

%s
" % (more, "\n".join(traceback.split("\n")))) class Root(plugin_mount.PagePlugin):