From ef99dcc12cfe0cc211d0b9c98f5ae05753a88ca2 Mon Sep 17 00:00:00 2001 From: duplo Date: Tue, 20 Oct 2009 12:12:29 +0000 Subject: [PATCH] Fix typo. git-svn-id: http://svn.pyinstaller.org/trunk@736 8dd32b29-ccff-0310-8a9a-9233e24343b1 --- hooks/hookutils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/hookutils.py b/hooks/hookutils.py index 4de8931..ec333fb 100644 --- a/hooks/hookutils.py +++ b/hooks/hookutils.py @@ -64,7 +64,7 @@ def django_dottedstring_imports(django_root_dir): def find_django_root(dir): entities = os.listdir(dir) if "manage.py" in entities and "settings.py" in entities and "urls.py" in entities: - return dir + return [dir] else: django_root_directories = [] for entity in entities: