Changeset 777
- Timestamp:
- 10/05/05 05:34:54 (3 years ago)
- Files:
-
- django/branches/i18n/django/bin/make-messages.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/i18n/django/bin/make-messages.py
r763 r777 61 61 if verbose: sys.stdout.write('processing file %s in %s\n' % (file, dirpath)) 62 62 if os.path.isfile(lf): 63 cmd = 'xgettext -j -d %s -L Python -p %s %s' % (domain, basedir, os.path.join(dirpath, thefile))63 cmd = 'xgettext -j -d %s -L Python -p "%s" "%s"' % (domain, basedir, os.path.join(dirpath, thefile)) 64 64 else: 65 cmd = 'xgettext -d %s -L Python -p %s %s' % (domain, basedir, os.path.join(dirpath, thefile))65 cmd = 'xgettext -d %s -L Python -p "%s" "%s"' % (domain, basedir, os.path.join(dirpath, thefile)) 66 66 os.system(cmd) 67 67 if thefile != file:
