diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-01-11 14:53:47 +0100 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-01-11 14:53:47 +0100 |
| commit | 29334bd5ee976264a107787f9efae8e539ec6bb5 (patch) | |
| tree | 0f5f980d2804e728e0eb446afdcb685dec21d148 /DistUpgrade | |
| parent | 36181d34a93864336da6ccd22402ebab37f79778 (diff) | |
| download | python-apt-29334bd5ee976264a107787f9efae8e539ec6bb5.tar.gz | |
* fix
Diffstat (limited to 'DistUpgrade')
| -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 |
