Remove Python 2.4-incompatible 'with' statement

reviewable/pr18780/r1
Junegunn Choi 11 years ago
parent 407d6041b3
commit 2663513b5c

@ -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

Loading…
Cancel
Save