aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hooks/pre_gen_project.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/hooks/pre_gen_project.py b/hooks/pre_gen_project.py
deleted file mode 100644
index f195d6a..0000000
--- a/hooks/pre_gen_project.py
+++ /dev/null
@@ -1,8 +0,0 @@
-"""Validate the project was created correctly."""
-import sys
-
-project_name = '{{ cookiecutter.project_name }}'
-
-if '-' in project_name:
- print('ERROR: Project shortname cannot contain dashes, please use underscores')
- sys.exit(1)