It'd nice if pyflakes emitted a warning on code like this:
try:
oldtime=os.path.getmtime(fname)
except OSError,IOError:
oldtime=0
(Note missing parentheses around "OSError,IOError".)
It'd nice if pyflakes emitted a warning on code like this:
try:
oldtime=os.path.getmtime(fname)
except OSError,IOError:
oldtime=0
(Note missing parentheses around "OSError,IOError".)