]> git.donarmstrong.com Git - deb_pkgs/autorandr.git/commitdiff
Add URL to error messages.
authorPhillip Berndt <phillip.berndt@googlemail.com>
Tue, 31 May 2016 07:16:44 +0000 (09:16 +0200)
committerPhillip Berndt <phillip.berndt@googlemail.com>
Tue, 31 May 2016 07:17:13 +0000 (09:17 +0200)
Far too many people report bugs for the Python version at
wertarbyte/autorandr.

autorandr.py

index 9531f6d6705759c4b0f75b83ef9776e98e4f22ad..0b16695befb639a8b25a4d298f6f689db974bed0 100755 (executable)
@@ -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(":\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)
 
                          "\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("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
         raise