]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
fix indentation
authorBenjamin Peterson <benjamin@python.org>
Tue, 21 Jun 2011 03:09:13 +0000 (22:09 -0500)
committerBenjamin Peterson <benjamin@python.org>
Tue, 21 Jun 2011 03:09:13 +0000 (22:09 -0500)
Python/symtable.c

index 15ba6b5e2f0c4931a22a5d35073d09abd258a3d9..5eff364439dfdf7ad3f1421e88152416ef3ee32c 100644 (file)
@@ -1568,12 +1568,12 @@ symtable_visit_alias(struct symtable *st, alias_ty a)
     }
     else {
         if (st->st_cur->ste_type != ModuleBlock) {
-        int lineno = st->st_cur->ste_lineno;
-        int col_offset = st->st_cur->ste_col_offset;
-        PyErr_SetString(PyExc_SyntaxError, IMPORT_STAR_WARNING);
-        PyErr_SyntaxLocationEx(st->st_filename, lineno, col_offset);
-        Py_DECREF(store_name);
-        return 0;
+            int lineno = st->st_cur->ste_lineno;
+            int col_offset = st->st_cur->ste_col_offset;
+            PyErr_SetString(PyExc_SyntaxError, IMPORT_STAR_WARNING);
+            PyErr_SyntaxLocationEx(st->st_filename, lineno, col_offset);
+            Py_DECREF(store_name);
+            return 0;
         }
         st->st_cur->ste_unoptimized |= OPT_IMPORT_STAR;
         Py_DECREF(store_name);