From: Pedro Algarvio Date: Tue, 3 Jul 2007 18:00:42 +0000 (+0000) Subject: Minor typo correction. X-Git-Tag: 1.0~448 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d1194dc28745fac5fb6b8ae09cfe782e38c4639d;p=thirdparty%2Fbabel.git Minor typo correction. --- diff --git a/babel/messages/catalog.py b/babel/messages/catalog.py index 0faf2e84..f5a9a72d 100644 --- a/babel/messages/catalog.py +++ b/babel/messages/catalog.py @@ -469,7 +469,7 @@ class Catalog(object): self._messages[key] = message def add(self, id, string=None, locations=(), flags=(), auto_comments=(), - user_comments=(), old_message=()): + user_comments=(), old_msgid=()): """Add or update the message with the specified ID. >>> catalog = Catalog() @@ -490,7 +490,7 @@ class Catalog(object): :param user_comments: a sequence of user comments """ self[id] = Message(id, string, list(locations), flags, auto_comments, - user_comments, old_message) + user_comments, old_msgid) def update(self, template, no_fuzzy_matching=False, include_old_msgid=False):