Skip to content
Snippets Groups Projects
Commit 91bb1921 authored by Stuart Campbell's avatar Stuart Campbell
Browse files

correct call to sleep()

parent 150f7c5c
No related branches found
No related tags found
No related merge requests found
...@@ -121,7 +121,7 @@ if __name__ == '__main__': ...@@ -121,7 +121,7 @@ if __name__ == '__main__':
arg_changes = ['git', 'log', '--pretty=format:"%aE"', '--shortstat', since, until] arg_changes = ['git', 'log', '--pretty=format:"%aE"', '--shortstat', since, until]
sub = subprocess.Popen(arg_changes, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=repolocation) sub = subprocess.Popen(arg_changes, stdout=subprocess.PIPE, stderr=subprocess.PIPE, cwd=repolocation)
sleep(1) time.sleep(1)
stdout, stderr = sub.communicate() stdout, stderr = sub.communicate()
output = stdout.split('\n') output = stdout.split('\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment