summaryrefslogtreecommitdiff
path: root/Python/symtable.c
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2011-06-20 22:09:13 -0500
committerBenjamin Peterson <benjamin@python.org>2011-06-20 22:09:13 -0500
commitcf1391cc1af779295a0547ab74e4c6925596c3b1 (patch)
tree8ed0faecc4f29821fdddaa9eeb3b5b50fe5673f2 /Python/symtable.c
parentc50c0b1767d85169bf519781f14e10955b0f8adc (diff)
downloadcpython-cf1391cc1af779295a0547ab74e4c6925596c3b1.tar.gz
fix indentation
Diffstat (limited to 'Python/symtable.c')
-rw-r--r--Python/symtable.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index 15ba6b5e2f..5eff364439 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -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);