From 2fb6c3b845967f8c22baeedf4038c3e488746d26 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Thu, 14 Jul 2005 01:32:23 +0000 Subject: [PATCH] Fixed #30 -- django-admin startproject and startapp now ignore directories starting with a dot git-svn-id: http://code.djangoproject.com/svn/django/trunk@8 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/bin/django-admin.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/django/bin/django-admin.py b/django/bin/django-admin.py index fd2d96ad28..fefc20b9bd 100644 --- a/django/bin/django-admin.py +++ b/django/bin/django-admin.py @@ -314,6 +314,9 @@ def _start_helper(app_or_project, name, directory, other_name=''): relative_dir = d[len(template_dir)+1:].replace('%s_name' % app_or_project, name) if relative_dir: os.mkdir(os.path.join(top_dir, relative_dir)) + for i, subdir in enumerate(subdirs): + if subdir.startswith('.'): + del subdirs[i] for f in files: fp_old = open(os.path.join(d, f), 'r') fp_new = open(os.path.join(top_dir, relative_dir, f.replace('%s_name' % app_or_project, name)), 'w')