Changeset 8576
- Timestamp:
- 08/26/08 02:43:59 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management/commands/makemessages.py
r8234 r8576 98 98 if verbosity > 1: 99 99 sys.stdout.write('processing file %s in %s\n' % (file, dirpath)) 100 src = open(os.path.join(dirpath, file), "r b").read()100 src = open(os.path.join(dirpath, file), "rU").read() 101 101 src = pythonize_re.sub('\n#', src) 102 open(os.path.join(dirpath, '%s.py' % file), "wb").write(src)103 102 thefile = '%s.py' % file 103 open(os.path.join(dirpath, thefile), "w").write(src) 104 104 cmd = 'xgettext -d %s -L Perl --keyword=gettext_noop --keyword=gettext_lazy --keyword=ngettext_lazy:1,2 --from-code UTF-8 -o - "%s"' % (domain, os.path.join(dirpath, thefile)) 105 105 (stdin, stdout, stderr) = os.popen3(cmd, 't') … … 122 122 thefile = file 123 123 if file_ext in extensions: 124 src = open(os.path.join(dirpath, file), "r b").read()124 src = open(os.path.join(dirpath, file), "rU").read() 125 125 thefile = '%s.py' % file 126 open(os.path.join(dirpath, thefile), "w b").write(templatize(src))126 open(os.path.join(dirpath, thefile), "w").write(templatize(src)) 127 127 if verbosity > 1: 128 128 sys.stdout.write('processing file %s in %s\n' % (file, dirpath)) … … 149 149 150 150 if os.path.exists(potfile): 151 (stdin, stdout, stderr) = os.popen3('msguniq --to-code=utf-8 "%s"' % potfile, ' b')151 (stdin, stdout, stderr) = os.popen3('msguniq --to-code=utf-8 "%s"' % potfile, 't') 152 152 msgs = stdout.read() 153 153 errors = stderr.read() … … 156 156 open(potfile, 'w').write(msgs) 157 157 if os.path.exists(pofile): 158 (stdin, stdout, stderr) = os.popen3('msgmerge -q "%s" "%s"' % (pofile, potfile), ' b')158 (stdin, stdout, stderr) = os.popen3('msgmerge -q "%s" "%s"' % (pofile, potfile), 't') 159 159 msgs = stdout.read() 160 160 errors = stderr.read()
