Commit 0f264392 by Michael DeHaan

Remove variable per pyflakes

parent e1167d69
...@@ -88,7 +88,7 @@ def log_flock(runner): ...@@ -88,7 +88,7 @@ def log_flock(runner):
if runner is not None: if runner is not None:
try: try:
fcntl.lockf(runner.output_lockfile, fcntl.LOCK_EX) fcntl.lockf(runner.output_lockfile, fcntl.LOCK_EX)
except OSError, e: except OSError:
# already got closed? # already got closed?
pass pass
...@@ -97,7 +97,7 @@ def log_unflock(runner): ...@@ -97,7 +97,7 @@ def log_unflock(runner):
if runner is not None: if runner is not None:
try: try:
fcntl.lockf(runner.output_lockfile, fcntl.LOCK_UN) fcntl.lockf(runner.output_lockfile, fcntl.LOCK_UN)
except OSError, e: except OSError:
# already got closed? # already got closed?
pass 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