Display short troubleshooting URL on exception

This commit is contained in:
Oliver Smith 2017-07-06 18:59:13 +02:00
parent b675f65f7d
commit 10fd0f312d
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 1 additions and 2 deletions

View File

@ -103,8 +103,7 @@ def main():
except Exception as e:
logging.info("ERROR: " + str(e))
logging.info("Run 'pmbootstrap log' for details.")
logging.info(
"See also: https://github.com/postmarketOS/pmbootstrap/wiki/Troubleshooting")
logging.info("See also: <https://postmarketos.org/troubleshooting>")
logging.debug(traceback.format_exc())
return 1