We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
resize.py has
if not os.exists(dst):
which should be
if not os.path.exists(dst):