From 0d4b7a005fb1c894ad33b630d01ebe616788e6e1 Mon Sep 17 00:00:00 2001 From: Sebastian Reyes Espinosa Date: Mon, 13 Feb 2017 17:05:17 -0500 Subject: [PATCH] Adding missing line Adding missing import at the head of the file. The previous commit added the string content, but I didn't added the needed import line. This fixes it. --- hooks/post_gen_project.py | 1 + 1 file changed, 1 insertion(+) diff --git a/hooks/post_gen_project.py b/hooks/post_gen_project.py index 8cc2a3f90..8b8d4763e 100644 --- a/hooks/post_gen_project.py +++ b/hooks/post_gen_project.py @@ -16,6 +16,7 @@ from __future__ import print_function import os import random import shutil +import string # Get the root project directory PROJECT_DIRECTORY = os.path.realpath(os.path.curdir)