X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=autorandr.py;h=c8b8f8fcebbd15f2de349876c82bf605cf98181a;hb=7a41c28a93e2907a34d9a90e1821b2233e149642;hp=812329ddf72e78d8dd01bc158fa37cc74ed1cdc1;hpb=9d4f09ed4f66a25d2f580f60ad4fda024e573b71;p=deb_pkgs%2Fautorandr.git diff --git a/autorandr.py b/autorandr.py index 812329d..c8b8f8f 100755 --- a/autorandr.py +++ b/autorandr.py @@ -23,7 +23,6 @@ # from __future__ import print_function -import time import binascii import copy @@ -35,6 +34,7 @@ import re import subprocess import sys import shutil +import time from collections import OrderedDict from distutils.version import LooseVersion as Version @@ -113,7 +113,8 @@ class AutorandrException(Exception): retval.append(":\n ") retval.append(str(self.original_exception).replace("\n", "\n ")) if self.report_bug: - retval.append("\nThis appears to be a bug. Please help improving autorandr by reporting it upstream." + retval.append("\nThis appears to be a bug. Please help improving autorandr by reporting it upstream:" + "\nhttps://github.com/phillipberndt/autorandr/issues" "\nPlease attach the output of `xrandr --verbose` to your bug report if appropriate.") return "".join(retval) @@ -945,5 +946,5 @@ if __name__ == '__main__': print("Exception: {0}".format(e.__class__.__name__)) sys.exit(2) - print("Unhandled exception ({0}). Please report this as a bug.".format(e), file=sys.stderr) + print("Unhandled exception ({0}). Please report this as a bug at https://github.com/phillipberndt/autorandr/issues.".format(e), file=sys.stderr) raise