summaryrefslogtreecommitdiff
path: root/django/bin
diff options
context:
space:
mode:
authorGeorg Bauer <gb@hugo.westfalen.de>2005-12-03 19:04:31 +0000
committerGeorg Bauer <gb@hugo.westfalen.de>2005-12-03 19:04:31 +0000
commit90ff261fbc4b80841bde7a5b7aeaf26fb794f904 (patch)
tree61768aaaf9bfc5c6ca7bd19636b9aefd6fe7fcc1 /django/bin
parent027c47b9b4f88f83ec06a968e3c9264e6f878f74 (diff)
added 'b' modifier to popen3 calls in make-messages.py to help getting it to run with windows
git-svn-id: http://code.djangoproject.com/svn/django/trunk@1527 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'django/bin')
-rwxr-xr-xdjango/bin/make-messages.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/django/bin/make-messages.py b/django/bin/make-messages.py
index c989034c0b..3ee60cee55 100755
--- a/django/bin/make-messages.py
+++ b/django/bin/make-messages.py
@@ -75,7 +75,7 @@ for lang in languages:
if verbose: sys.stdout.write('processing file %s in %s\n' % (file, dirpath))
cmd = 'xgettext %s -d %s -L Python --keyword=gettext_noop --keyword=gettext_lazy --keyword=ngettext_lazy -o - "%s"' % (
os.path.exists(potfile) and '--omit-header' or '', domain, os.path.join(dirpath, thefile))
- (stdin, stdout, stderr) = os.popen3(cmd, 'r')
+ (stdin, stdout, stderr) = os.popen3(cmd, 'rb')
msgs = stdout.read()
errors = stderr.read()
if errors:
@@ -91,7 +91,7 @@ for lang in languages:
if thefile != file:
os.unlink(os.path.join(dirpath, thefile))
- (stdin, stdout, stderr) = os.popen3('msguniq %s' % potfile, 'r')
+ (stdin, stdout, stderr) = os.popen3('msguniq %s' % potfile, 'rb')
msgs = stdout.read()
errors = stderr.read()
if errors:
@@ -100,7 +100,7 @@ for lang in languages:
sys.exit(8)
open(potfile, 'w').write(msgs)
if os.path.exists(pofile):
- (stdin, stdout, stderr) = os.popen3('msgmerge -q %s %s' % (pofile, potfile), 'r')
+ (stdin, stdout, stderr) = os.popen3('msgmerge -q %s %s' % (pofile, potfile), 'rb')
msgs = stdout.read()
errors = stderr.read()
if errors: