diff options
| author | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-19 01:04:13 +0200 |
|---|---|---|
| committer | Michael Vogt <michael.vogt@ubuntu.com> | 2006-05-19 01:04:13 +0200 |
| commit | 36c1d1161a630f2e4b1ba3354202320a10b4ef2a (patch) | |
| tree | cc90de741ce3b00a85187c312d417f0a29230787 | |
| parent | 8fe76e9038396d91ffcfe8adeadd0b0f50f2d12f (diff) | |
| download | python-apt-36c1d1161a630f2e4b1ba3354202320a10b4ef2a.tar.gz | |
* UpdateManager/UpdateManager.py:
- strip off epoch (for real this time!)
| -rw-r--r-- | UpdateManager/UpdateManager.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/UpdateManager/UpdateManager.py b/UpdateManager/UpdateManager.py index 7c2ad008..134c6d32 100644 --- a/UpdateManager/UpdateManager.py +++ b/UpdateManager/UpdateManager.py @@ -136,7 +136,7 @@ class MyCache(apt.Cache): # stip epoch l = string.split(srcver,":") if len(l) > 1: - srcstr = l[1] + srcver = "".join(l[1:]) try: uri = CHANGELOGS_URI % (src_section,prefix,srcpkg,srcpkg, srcver) |
