get-definitions: maybe don't wait 5000s
This commit is contained in:
parent
da64b59cfb
commit
d4eb485f45
|
@ -22,12 +22,12 @@ def main():
|
|||
for form in forms_list_file:
|
||||
form = form.rstrip()
|
||||
if start_from:
|
||||
if start_from != form:
|
||||
continue
|
||||
else:
|
||||
if start_from == form:
|
||||
start_from = ""
|
||||
else:
|
||||
continue
|
||||
get_definitions(form)
|
||||
time.sleep(5000)
|
||||
time.sleep(5)
|
||||
except OSError:
|
||||
exit("Could not open forms list file.")
|
||||
|
||||
|
|
Loading…
Reference in a new issue