# HG changeset patch # User Nicolas Chauvat # Date 1354099455 -3600 # Node ID 7bacc4f21edc4b67efa70d265ff76c9c7117a7e0 # Parent 544ce5dd863cb5e18fd9c62c37f8db343845893d [web/views] bugfix: the mime type is text/plain, not text/txt (closes #2526345) diff -r 544ce5dd863c -r 7bacc4f21edc web/views/management.py --- a/web/views/management.py Tue Nov 27 17:16:23 2012 +0100 +++ b/web/views/management.py Wed Nov 28 11:44:15 2012 +0100 @@ -171,7 +171,7 @@ """A textual stats output for monitoring tools such as munin """ __regid__ = 'processinfo' - content_type = 'text/txt' + content_type = 'text/plain' templatable = False __select__ = none_rset() & match_user_groups('users', 'managers')