From: Philip Jenvey Date: Wed, 20 Jun 2007 19:54:33 +0000 (+0000) Subject: simplify X-Git-Tag: 1.0~488 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce6f65b846601364eaa417e77633da246ab7c5df;p=thirdparty%2Fbabel.git simplify --- diff --git a/babel/messages/extract.py b/babel/messages/extract.py index cb7b99a7..4e2b3caf 100644 --- a/babel/messages/extract.py +++ b/babel/messages/extract.py @@ -260,7 +260,7 @@ def extract_python(fileobj, keywords, comment_tags, options): elif tok == COMMENT: # Strip the comment token from the line value = value[1:].strip() - if in_translator_comments is True and \ + if in_translator_comments and \ translator_comments[-1][0] == lineno - 1: # We're already inside a translator comment, continue appending # XXX: Should we check if the programmer keeps adding the @@ -271,8 +271,7 @@ def extract_python(fileobj, keywords, comment_tags, options): # starts with one of the comment tags for comment_tag in comment_tags: if value.startswith(comment_tag): - if in_translator_comments is not True: - in_translator_comments = True + in_translator_comments = True comment = value[len(comment_tag):].strip() translator_comments.append((lineno, comment)) break