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.
This commit is contained in:
Sebastian Reyes Espinosa 2017-02-13 17:05:17 -05:00 committed by GitHub
parent a3ef63da39
commit 0d4b7a005f

View File

@ -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)