Changeset 3941
- Timestamp:
- 10/26/06 21:19:32 (2 years ago)
- Files:
-
- django/trunk/AUTHORS (modified) (1 diff)
- django/trunk/django/core/management.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/AUTHORS
r3938 r3941 113 113 mattmcc 114 114 Martin Maney <http://www.chipy.org/Martin_Maney> 115 masonsimon+django@gmail.com 115 116 Manuzhai 116 117 Petar Marić django/trunk/django/core/management.py
r3932 r3941 33 33 style.ERROR = termcolors.make_style(fg='red', opts=('bold',)) 34 34 style.ERROR_OUTPUT = termcolors.make_style(fg='red', opts=('bold',)) 35 style.NOTICE = termcolors.make_style(fg='red') 35 36 style.SQL_FIELD = termcolors.make_style(fg='green', opts=('bold',)) 36 37 style.SQL_COLTYPE = termcolors.make_style(fg='green') … … 697 698 fp_old.close() 698 699 fp_new.close() 699 shutil.copymode(path_old, path_new) 700 try: 701 shutil.copymode(path_old, path_new) 702 except OSError: 703 sys.stderr.write(style.NOTICE("Notice: Couldn't set permission bits on %s. You're probably using an uncommon filesystem setup. No problem.\n" % path_new)) 700 704 701 705 def startproject(project_name, directory):
