From: Zac Medico Date: Thu, 30 Jul 2009 21:45:00 +0000 (-0000) Subject: Fix breakage in owners() handling of abs paths. X-Git-Tag: v2.2_rc34~13 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=4c24eec1f0600df3154c8d4fac0334fa73d8a504;p=portage.git Fix breakage in owners() handling of abs paths. svn path=/main/trunk/; revision=13862 --- diff --git a/bin/portageq b/bin/portageq index c21c783c1..cf9c5f066 100755 --- a/bin/portageq +++ b/bin/portageq @@ -198,7 +198,7 @@ def owners(argv): if is_basename: files.append(f) else: - files.append(f[len(root):]) + files.append(f[len(root)-1:]) owners = vardb._owners.get_owners(files)