You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script doesn't run under python 3. As far as I can tell, the only change necessary is to the last line.
From this: print line,
to this: print(line, end='')
The text was updated successfully, but these errors were encountered:
The script doesn't run under python 3. As far as I can tell, the only change necessary is to the last line.
From this:
print line,
to this:
print(line, end='')
The text was updated successfully, but these errors were encountered: