diff options
| author | Brian Dolbec <dolsen@gentoo.org> | 2016-09-15 09:01:52 -0700 |
|---|---|---|
| committer | Brian Dolbec <dolsen@gentoo.org> | 2016-09-15 09:01:52 -0700 |
| commit | 7b5c017b896b11c8c5b35c2b337141532536a0ab (patch) | |
| tree | c39c9257e3881b0e0d33c6a4d0be3fdc39f70af0 | |
| parent | 06af2be2d987c0a2f34c872ed3d86ab74fe9800d (diff) | |
| download | gentoolkit-7b5c017b896b11c8c5b35c2b337141532536a0ab.tar.gz | |
gentoolkit/package.py: Fix dblink call py3 compatibility bug 575788
| -rw-r--r-- | pym/gentoolkit/package.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/gentoolkit/package.py b/pym/gentoolkit/package.py index da9d65c..42b632b 100644 --- a/pym/gentoolkit/package.py +++ b/pym/gentoolkit/package.py @@ -363,7 +363,7 @@ class Package(CPV): myroot = self._settings["ROOT"] if myroot != '/': ret = {} - for key, val in self.dblink.getcontents().iteritems(): + for key, val in self.dblink.getcontents().items(): ret['/' + os.path.relpath(key, myroot)] = val contents = ret |
