summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Vogt <michael.vogt@ubuntu.com>2006-05-19 01:04:13 +0200
committerMichael Vogt <michael.vogt@ubuntu.com>2006-05-19 01:04:13 +0200
commit36c1d1161a630f2e4b1ba3354202320a10b4ef2a (patch)
treecc90de741ce3b00a85187c312d417f0a29230787
parent8fe76e9038396d91ffcfe8adeadd0b0f50f2d12f (diff)
downloadpython-apt-36c1d1161a630f2e4b1ba3354202320a10b4ef2a.tar.gz
* UpdateManager/UpdateManager.py:
- strip off epoch (for real this time!)
-rw-r--r--UpdateManager/UpdateManager.py2
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)