Remove Python 2.4-incompatible 'with' statement
This commit is contained in:
parent
828b9f872f
commit
9c798b119c
1 changed files with 4 additions and 1 deletions
|
@ -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…
Reference in a new issue