diff options
| -rw-r--r-- | DistUpgrade/DistUpgradeControler.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/DistUpgrade/DistUpgradeControler.py b/DistUpgrade/DistUpgradeControler.py index b27e3926..6c81dd9f 100644 --- a/DistUpgrade/DistUpgradeControler.py +++ b/DistUpgrade/DistUpgradeControler.py @@ -277,7 +277,8 @@ class DistUpgradeControler(object): _("A problem occured during the update. " "This is usually some sort of network " "problem, please check your network " - "connection and retry."), e) + "connection and retry."), + "%s" % e) return False return res @@ -313,7 +314,7 @@ class DistUpgradeControler(object): _("Some problem occured during the upgrade. " "This is mostly a network problem, please " "check the network and try again. "), - e) + "%s" % e) return False return res |
