Open binary files in binary mode. Fixes test failure under Windows.

This commit is contained in:
Tim Peters 2000-08-26 21:01:27 +00:00
parent 124af7cfd6
commit c79519569d
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ MOFILE = os.path.join(LOCALEDIR, 'gettext.mo')
def setup():
os.makedirs(LOCALEDIR)
fp = open(MOFILE, 'w')
fp = open(MOFILE, 'wb')
fp.write(base64.decodestring(GNU_MO_DATA))
fp.close()