summaryrefslogtreecommitdiff
path: root/UpdateManager
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-04-04 14:57:48 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-04-04 14:57:48 +0200
commitcfdf56d0896513feaf59e91146feb875f852b4e5 (patch)
treeaf3af83da30518208fa684cfd40ed29d1bd6f294 /UpdateManager
parent4b46ffefe03f0ca2964767bfc02a59288eb56ffa (diff)
downloadpython-apt-cfdf56d0896513feaf59e91146feb875f852b4e5.tar.gz
* syntax error fix
Diffstat (limited to 'UpdateManager')
-rw-r--r--UpdateManager/DistUpgradeFetcher.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/UpdateManager/DistUpgradeFetcher.py b/UpdateManager/DistUpgradeFetcher.py
index d81bab11..e9347f7c 100644
--- a/UpdateManager/DistUpgradeFetcher.py
+++ b/UpdateManager/DistUpgradeFetcher.py
@@ -208,14 +208,14 @@ class DistUpgradeFetcher(object):
return
if not self.verifyDistUprader():
error(_("Verfication failed"),
- "Verfing the upgrade failed. There may be a problem "
- "with the network or with the server. "))
+ _("Verfing the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
self.cleanup()
return
if not self.authenticate():
error(_("Authentication failed"),
- "Authenticating the upgrade failed. There may be a problem "
- "with the network or with the server. "))
+ _("Authenticating the upgrade failed. There may be a problem "
+ "with the network or with the server. "))
self.cleanup()
return
self.runDistUpgrader()