diff options
author | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-05-07 09:53:30 +0900 |
---|---|---|
committer | Yasuhito FUTATSUKI at POEM <futatuki@poem.co.jp> | 2018-05-07 09:53:30 +0900 |
commit | a4d68f6e3632c2dc2883ed3cd230e74bf04f5013 (patch) | |
tree | f34dcd7a44be1b53e966f34ce06a38c81a17c659 /scripts | |
parent | 0473ee6cb1997fb1a9f480dd9c929120b36d4e33 (diff) | |
parent | 86c1771a9cc63404ed1e258bbed6920021140eae (diff) | |
download | mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.tar.gz mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.tar.xz mailman2-a4d68f6e3632c2dc2883ed3cd230e74bf04f5013.zip |
merge lp:mailman/2.1 up to 1753
Diffstat (limited to '')
-rw-r--r-- | scripts/driver | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scripts/driver b/scripts/driver index 67ff0fdf..3c8f831b 100644 --- a/scripts/driver +++ b/scripts/driver @@ -1,6 +1,6 @@ # -*- python -*- -# Copyright (C) 1998-2013 by the Free Software Foundation, Inc. +# Copyright (C) 1998-2018 by the Free Software Foundation, Inc. # # This program is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License @@ -143,7 +143,8 @@ def print_traceback(logfp=None): traceback = None try: from Mailman.mm_cfg import VERSION - except ImportError: + except: + # There could be any exception if mm_cfg.py is not valid python. VERSION = '<undetermined>' # Write to the log file first. @@ -182,7 +183,7 @@ a description of what happened. Thanks! print '''<p>Please inform the webmaster for this site of this problem. Printing of traceback and other system information has been explicitly inhibited, but the webmaster can find this information in the -Mailman error logs.''' +Mailman error logs or the web server logs.''' |