The command was initially developed for Python 2, but now breaks with Python 3.
ModuleNotFoundError: No module named 'urlparse'
except SyntaxError, e:
^
SyntaxError: invalid syntax
NameError: name 'xrange' is not defined
AttributeError: module 'itertools' has no attribute 'izip_longest'
The command was initially developed for Python 2, but now breaks with Python 3.
These only small changes are needed to correct the errors:
s3_directory_generator.py: renameurlparsetourllib.parsesee The urlparse module is renamed to urllib.parse in Python 3 FriendCode/gittle#49main.py: remove that unused importmain.py: use the standardtry exceptsyntax.ncdu_data_writer.py: replacexrangewithrangethat are now equivalent : see range-vs-xrange-pythondirectory_walker.py: renameizip_longesttozip_longest