We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65f0e5c commit 6683bcfCopy full SHA for 6683bcf
setup.py
@@ -67,7 +67,8 @@
67
except FileExistsError:
68
print(f"The destination directory '{TEMPLATES_DST_DIR}' already exists and cannot be overwritten.")
69
except PermissionError:
70
- print(f"Permission denied when trying to copy '{TEMPLATES_SRC_DIR}' to '{TEMPLATES_DST_DIR}'. Please check your permissions.")
+ print(f"Permission denied when trying to copy '{TEMPLATES_SRC_DIR}' to '{TEMPLATES_DST_DIR}'. " \
71
+ "Please check your permissions.")
72
except Exception as e: # pylint: disable=broad-except
73
print(f"An unexpected error occurred while copying the directory tree: {e}")
74
0 commit comments