Get rid of Python 2.7 dict.viewkeys() call.
This commit is contained in:
		@@ -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()]
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user