More Python 3 -friendly formatting.

This commit is contained in:
Rumpu-Jussi
2015-10-27 14:45:55 +02:00
parent fdd74b5b0c
commit 47d92277cc
+1 -1
View File
@@ -359,7 +359,7 @@ def _argsdicts( args, mydict ):
elif len( args ) == 1:
args = _totuple( args[0] )
else:
raise Exception, "We should have never gotten here."
raise Exception("We should have never gotten here.")
mykeys = mydict.keys( )
myvalues = map( _totuple, mydict.values( ) )