diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-04 14:57:48 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-04-04 14:57:48 +0200 |
| commit | cfdf56d0896513feaf59e91146feb875f852b4e5 (patch) | |
| tree | af3af83da30518208fa684cfd40ed29d1bd6f294 /UpdateManager | |
| parent | 4b46ffefe03f0ca2964767bfc02a59288eb56ffa (diff) | |
| download | python-apt-cfdf56d0896513feaf59e91146feb875f852b4e5.tar.gz | |
* syntax error fix
Diffstat (limited to 'UpdateManager')
| -rw-r--r-- | UpdateManager/DistUpgradeFetcher.py | 8 |
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() |
