[1.2.X] Fixed #14145 - undeterministic behavior when project or app template contains dotdir
Thanks to marbu for report and patch. Backport of [13668] from trunk. git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.2.X@13681 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7a1b694189
commit
7a601b3fc1
|
@ -394,9 +394,9 @@ def copy_helper(style, app_or_project, name, directory, other_name=''):
|
||||||
relative_dir = d[len(template_dir)+1:].replace('%s_name' % app_or_project, name)
|
relative_dir = d[len(template_dir)+1:].replace('%s_name' % app_or_project, name)
|
||||||
if relative_dir:
|
if relative_dir:
|
||||||
os.mkdir(os.path.join(top_dir, relative_dir))
|
os.mkdir(os.path.join(top_dir, relative_dir))
|
||||||
for i, subdir in enumerate(subdirs):
|
for subdir in subdirs[:]:
|
||||||
if subdir.startswith('.'):
|
if subdir.startswith('.'):
|
||||||
del subdirs[i]
|
subdirs.remove(subdir)
|
||||||
for f in files:
|
for f in files:
|
||||||
if not f.endswith('.py'):
|
if not f.endswith('.py'):
|
||||||
# Ignore .pyc, .pyo, .py.class etc, as they cause various
|
# Ignore .pyc, .pyo, .py.class etc, as they cause various
|
||||||
|
|
Loading…
Reference in New Issue