running libfuturize.fixes.fix_raise

This commit is contained in:
ilvalle
2016-05-29 08:46:31 +02:00
parent d74413bc16
commit 36ca754c77
4 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1131,7 +1131,7 @@ class Server(object):
is passed at initialization time, this must be implemented by
a subclass.
"""
raise NotImplementedError, self.__class__.__name__ + '.handler'
raise NotImplementedError(self.__class__.__name__ + '.handler')
def error(self, req):
"""
+1 -1
View File
@@ -415,7 +415,7 @@ class Image( RawCode ) :
fin = infile
if 'datatype' not in kwargs.keys():
msg = "If passing in a file object, you must also specify type='xxx' where xxx is one of %s" % self.PICT_TYPES.keys()
raise ValueError,msg
raise ValueError(msg)
file_name = kwargs.pop('datatype')
else:
fin = file( infile, 'rb' )
+1 -1
View File
@@ -529,7 +529,7 @@ class Sheet:
"""
if not self.regex.match(key):
raise SyntaxError, "Invalid cell name: %s" % key
raise SyntaxError("Invalid cell name: %s" % key)
else:
attributes = self.get_attributes(kwarg)
if attributes is not None:
+1 -1
View File
@@ -86,7 +86,7 @@ def custom_importer(name, globals=None, locals=None, fromlist=None, level=-1):
try:
result = result or sys.modules[modules_prefix+'.'+itemname]
except KeyError as e:
raise ImportError, 'Cannot import module %s' % str(e)
raise ImportError('Cannot import module %s' % str(e))
modules_prefix += "." + itemname
return result
else: