1
0
mirror of https://github.com/arsenetar/dupeguru.git synced 2026-01-22 14:41:39 +00:00

Changed the error report so it brings the user to Github directly

Making error reporting too easy results in too much context-less
tracebacks which demand attention and, in the end, aren't of much use.

Requiring the user to report errors on Github will reduce the number of
reports, but hopefully make these reports have better context.
This commit is contained in:
Virgil Dupras
2014-03-29 17:42:23 -04:00
parent b76820ebde
commit 10d1363334
4 changed files with 25 additions and 52 deletions

View File

@@ -38,7 +38,7 @@ def main():
from qt.{edition}.app import DupeGuru
app.setWindowIcon(QIcon(QPixmap(":/{0}".format(DupeGuru.LOGO_NAME))))
dgapp = DupeGuru()
install_excepthook()
install_excepthook('https://github.com/hsoft/dupeguru/issues')
return app.exec()
if __name__ == "__main__":