summaryrefslogtreecommitdiffstats
path: root/pym
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-10-25 16:43:06 +0000
committerZac Medico <zmedico@gentoo.org>2007-10-25 16:43:06 +0000
commitb5288fc2f13387aa7efc30402e931a5c7b922f4e (patch)
tree700e5dc0e66bc9ed288b45f0be7fb55863e61851 /pym
parentb5dc4f9364189134570da426ce34a05eabd339ce (diff)
downloadportage-b5288fc2f13387aa7efc30402e931a5c7b922f4e.tar.gz
portage-b5288fc2f13387aa7efc30402e931a5c7b922f4e.tar.bz2
portage-b5288fc2f13387aa7efc30402e931a5c7b922f4e.zip
Remove obsolete whitespace handling code for "obj" filenames
in CONTENTS. svn path=/main/trunk/; revision=8292
Diffstat (limited to 'pym')
-rw-r--r--pym/portage/dbapi/vartree.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py
index 32e04f436..18fc70096 100644
--- a/pym/portage/dbapi/vartree.py
+++ b/pym/portage/dbapi/vartree.py
@@ -995,7 +995,7 @@ class dblink(object):
mydat[1] = os.path.join(myroot, mydat[1].lstrip(os.path.sep))
if mydat[0] == "obj":
#format: type, mtime, md5sum
- pkgfiles[" ".join(mydat[1:-2])] = [mydat[0], mydat[-1], mydat[-2]]
+ pkgfiles[mydat[1]] = [mydat[0], mydat[-1], mydat[-2]]
elif mydat[0] == "dir":
#format: type
pkgfiles[" ".join(mydat[1:])] = [mydat[0] ]