From: Zac Medico Date: Thu, 25 Oct 2007 16:43:06 +0000 (-0000) Subject: Remove obsolete whitespace handling code for "obj" filenames X-Git-Tag: v2.2_pre1~515 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b5288fc2f13387aa7efc30402e931a5c7b922f4e;p=portage.git Remove obsolete whitespace handling code for "obj" filenames in CONTENTS. svn path=/main/trunk/; revision=8292 --- 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] ]