Get rid of Python 2.7 dict.viewkeys() call.
This commit is contained in:
parent
d95e7ecfe1
commit
696e80c62f
1 changed files with 1 additions and 1 deletions
|
@ -838,7 +838,7 @@ def normalize(self, **kwargs):
|
|||
|
||||
# If there are deps specified but not visited, they're not
|
||||
# actually deps of this package. Raise an error.
|
||||
extra = set(spec_deps.viewkeys()).difference(visited)
|
||||
extra = set(spec_deps.keys()).difference(visited)
|
||||
|
||||
# Also subtract out all the packags that provide a needed vpkg
|
||||
vdeps = [v for v in self.package.virtual_dependencies()]
|
||||
|
|
Loading…
Reference in a new issue