# HG changeset patch # User pjenvey # Date 1182369273 0 # Node ID 557d183d3160e0a262ce87766f5aa06747b3cf11 # Parent 24b5de93985009fce16113a4de8cef64cb1d1088 simplify diff --git a/babel/messages/extract.py b/babel/messages/extract.py --- a/babel/messages/extract.py +++ b/babel/messages/extract.py @@ -260,7 +260,7 @@ 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 @@ # 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