Fix wait_for to compile on python3 (#3722)

pull/18777/head
Michael Scherer 9 years ago committed by Matt Clay
parent 82df6f981e
commit fefc0cdd50

@ -435,7 +435,8 @@ def main():
if path:
try:
os.stat(path)
except OSError, e:
except OSError:
e = get_exception()
# If anything except file not present, throw an error
if e.errno != 2:
elapsed = datetime.datetime.now() - start

Loading…
Cancel
Save