From 5c60ea3fa1e40c6a3a2e0e9da71f55f8d7d6b2b1 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 18 Jan 2016 07:53:59 +0100 Subject: [PATCH] Fix two instances of wrong indentation. --- Python/ast.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/ast.c b/Python/ast.c index 33f2597fc0e..a5d8dbaee1b 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -3214,14 +3214,14 @@ ast_for_import_stmt(struct compiling *c, const node *n) alias_ty import_alias = alias_for_import_name(c, n, 1); if (!import_alias) return NULL; - asdl_seq_SET(aliases, 0, import_alias); + asdl_seq_SET(aliases, 0, import_alias); } else { for (i = 0; i < NCH(n); i += 2) { alias_ty import_alias = alias_for_import_name(c, CHILD(n, i), 1); if (!import_alias) return NULL; - asdl_seq_SET(aliases, i / 2, import_alias); + asdl_seq_SET(aliases, i / 2, import_alias); } } if (mod != NULL)