From: Zac Medico Date: Tue, 10 Jun 2008 02:14:39 +0000 (-0000) Subject: Fix typo. (trunk r10631) X-Git-Tag: v2.1.5.5~7 X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=62b728b01d4bb6618d5b26f7cbee986ffb2750e5;p=portage.git Fix typo. (trunk r10631) svn path=/main/branches/2.1.2/; revision=10632 --- diff --git a/pym/portage.py b/pym/portage.py index 78297d989..045fa1eaa 100644 --- a/pym/portage.py +++ b/pym/portage.py @@ -7336,8 +7336,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):