Change shebang of the convenience script to Python 3
The code is not compatible with Python 2. (Should it have been?)
Simplify status prints
The Python 2 original with trailing comma and explicit flush:
print "Generating front...",
sys.stdout.flush()
would be best translated as:
print("Generating front...",end=" ",flush=True)
(file=sys.stdout is the default)
but I see no reason to print all statuses on the same line, possibly making other messages more unreadable.
So, I changed them to simple print().
Change shebang of the convenience script to Python 3
The code is not compatible with Python 2. (Should it have been?)
Simplify status prints
The Python 2 original with trailing comma and explicit flush:
would be best translated as:
(file=sys.stdout is the default)
but I see no reason to print all statuses on the same line, possibly making other messages more unreadable.
So, I changed them to simple print().