On systems where 'python' refers to python3, redo failed to launch. All invocations of python have been made explicitly python2 invocations. All tests pass on an Arch Linux system as of this commit.
6 lines
97 B
Python
Executable file
6 lines
97 B
Python
Executable file
#!/usr/bin/env python2
|
|
import time
|
|
|
|
t1 = int(time.time())
|
|
while int(time.time()) == t1:
|
|
pass
|