From 33ad4402b372695b9526f57c33dd8f05c0eeddb3 Mon Sep 17 00:00:00 2001 From: bwarsaw <> Date: Mon, 22 Sep 2003 02:29:51 +0000 Subject: Backporting from the HEAD -- bin and cron scripts --- bin/msgfmt.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'bin/msgfmt.py') diff --git a/bin/msgfmt.py b/bin/msgfmt.py index 411e3aef..8a2d4e66 100755 --- a/bin/msgfmt.py +++ b/bin/msgfmt.py @@ -1,5 +1,5 @@ #! /usr/bin/env python - +# -*- coding: iso-8859-1 -*- # Written by Martin v. Löwis """Generate binary message catalog from textual translation description. @@ -82,8 +82,8 @@ def generate(): koffsets += [l1, o1+keystart] voffsets += [l2, o2+valuestart] offsets = koffsets + voffsets - output = struct.pack("iiiiiii", - 0x950412de, # Magic + output = struct.pack("Iiiiiii", + 0x950412deL, # Magic 0, # Version len(keys), # # of entries 7*4, # start of key index -- cgit v1.2.3