Skip to content

Commit

Permalink
Small changes to 'pack_tool.py'
Browse files Browse the repository at this point in the history
  • Loading branch information
FelisDiligens committed Sep 13, 2022
1 parent f9b9d56 commit fe5629d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion pack_tool.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def copytree(src, dst, symlinks=False):
errors.append((srcname, dstname, str(why)))
# catch the Error from the recursive copytree so that we can
# continue with other files
except Error as err:
except Exception as err:
errors.extend(err.args[0])
try:
shutil.copystat(src, dst)
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
colorama

0 comments on commit fe5629d

Please sign in to comment.