# HG changeset patch # User Paul Boddie # Date 1372624936 -7200 # Node ID a6777234627222ff8e78b7a467196e28be450b1f # Parent b66892c1cd40ebb3f99e6841c085e71d4cf1aca2 Fixed list comprehension "if" statement spacing. diff -r b66892c1cd40 -r a67772346272 compiler/ast.py --- a/compiler/ast.py Sun Jun 30 19:53:18 2013 +0200 +++ b/compiler/ast.py Sun Jun 30 22:42:16 2013 +0200 @@ -1395,7 +1395,7 @@ return "ListCompIf(%r)" % (self.test,) def __str__(self): - return "if %s" % self.test + return " if %s" % self.test def visit(self, visitor, *args): return visitor.visitListCompIf(self, *args)