Commit 41e83d9d by Michael DeHaan

Merge pull request #5045 from junegunn/wait_for-python2.4

Remove Python 2.4-incompatible 'with' statement
parents b8146e3b 9c798b11
......@@ -157,7 +157,8 @@ def main():
while datetime.datetime.now() < end:
if path:
try:
with open(path) as f:
f = open(path)
try:
if search_regex:
if re.search(search_regex, f.read(), re.MULTILINE):
break
......@@ -165,6 +166,8 @@ def main():
time.sleep(1)
else:
break
finally:
f.close()
except IOError:
time.sleep(1)
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