From: Zac Medico Date: Tue, 10 Jun 2008 02:13:59 +0000 (-0000) Subject: Fix typo. X-Git-Tag: v2.2_pre8~1 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=594bd45085f2e32f2dfb3c463a8ee8e56c2c1779;p=portage.git Fix typo. svn path=/main/trunk/; revision=10631 --- diff --git a/pym/portage/dbapi/vartree.py b/pym/portage/dbapi/vartree.py index f07cc5cdd..4c67dfa05 100644 --- a/pym/portage/dbapi/vartree.py +++ b/pym/portage/dbapi/vartree.py @@ -865,8 +865,7 @@ class vardbapi(dbapi): # Empty path is a code used to represent empty contents. self._add_path("", pkg_hash) for x in contents: - relative_path = x[root_len:] - self._add_path(x, pkg_hash) + self._add_path(x[root_len:], pkg_hash) self._vardb._aux_cache["modified"].add(cpv) def _add_path(self, path, pkg_hash):