Commit 0f264392 by Michael DeHaan

Remove variable per pyflakes

parent e1167d69
......@@ -88,7 +88,7 @@ def log_flock(runner):
if runner is not None:
try:
fcntl.lockf(runner.output_lockfile, fcntl.LOCK_EX)
except OSError, e:
except OSError:
# already got closed?
pass
......@@ -97,7 +97,7 @@ def log_unflock(runner):
if runner is not None:
try:
fcntl.lockf(runner.output_lockfile, fcntl.LOCK_UN)
except OSError, e:
except OSError:
# already got closed?
pass
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment