From: Phillip Berndt Date: Tue, 31 May 2016 07:16:44 +0000 (+0200) Subject: Add URL to error messages. X-Git-Tag: 1.0~23 X-Git-Url: https://git.donarmstrong.com/?p=deb_pkgs%2Fautorandr.git;a=commitdiff_plain;h=da23930cdbb8de7d77ac2df4f526557d4983bd53 Add URL to error messages. Far too many people report bugs for the Python version at wertarbyte/autorandr. --- diff --git a/autorandr.py b/autorandr.py index 9531f6d..0b16695 100755 --- a/autorandr.py +++ b/autorandr.py @@ -112,7 +112,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) @@ -925,5 +926,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