Changed django-admin startproject so that it doesn't copy .pyc files
git-svn-id: http://code.djangoproject.com/svn/django/trunk@79 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
7aed83c854
commit
d75fde94a7
|
@ -318,6 +318,8 @@ def _start_helper(app_or_project, name, directory, other_name=''):
|
||||||
if subdir.startswith('.'):
|
if subdir.startswith('.'):
|
||||||
del subdirs[i]
|
del subdirs[i]
|
||||||
for f in files:
|
for f in files:
|
||||||
|
if f.endswith('.pyc'):
|
||||||
|
continue
|
||||||
fp_old = open(os.path.join(d, f), 'r')
|
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')
|
fp_new = open(os.path.join(top_dir, relative_dir, f.replace('%s_name' % app_or_project, name)), 'w')
|
||||||
fp_new.write(fp_old.read().replace('{{ %s_name }}' % app_or_project, name).replace('{{ %s_name }}' % other, other_name))
|
fp_new.write(fp_old.read().replace('{{ %s_name }}' % app_or_project, name).replace('{{ %s_name }}' % other, other_name))
|
||||||
|
|
Loading…
Reference in New Issue