From aa0332c2a78c5c57ef0e0570e0ed5a04d912e9b3 Mon Sep 17 00:00:00 2001 From: Micah Jerome Ellison <4383304+micahellison@users.noreply.github.com> Date: Sat, 24 Aug 2019 15:47:13 -0700 Subject: [PATCH] [GH-632] adding call to action to report issue when upgrade fails --- jrnl/install.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jrnl/install.py b/jrnl/install.py index 9b6965fa..417497aa 100644 --- a/jrnl/install.py +++ b/jrnl/install.py @@ -90,7 +90,10 @@ def load_or_install_jrnl(): try: upgrade.upgrade_jrnl_if_necessary(config_path) except upgrade.UpgradeValidationException: - util.prompt("Aborting upgrade. Exiting.") + util.prompt("Aborting upgrade.") + util.prompt("Please tell us about this problem at the following URL:") + util.prompt("https://github.com/jrnl-org/jrnl/issues/new?title=UpgradeValidationException") + util.prompt("Exiting.") sys.exit(1) upgrade_config(config)