summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2003-10-21 18:10:28 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2003-10-21 18:10:28 (GMT)
commit174d276d8cc90412024b151c8d26c586c6a88066 (patch)
tree1e1347a705e126d979ffc88b1c77dbf9a499e8a2
parentfcefd0d2a50ab1b2df1d21028e1b2160141e707e (diff)
downloadcpython-174d276d8cc90412024b151c8d26c586c6a88066.zip
cpython-174d276d8cc90412024b151c8d26c586c6a88066.tar.gz
cpython-174d276d8cc90412024b151c8d26c586c6a88066.tar.bz2
Fix indentation.
-rw-r--r--Objects/frameobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/frameobject.c b/Objects/frameobject.c
index 2b042cd..1c46f64 100644
--- a/Objects/frameobject.c
+++ b/Objects/frameobject.c
@@ -744,7 +744,7 @@ PyFrame_FastToLocals(PyFrameObject *f)
if (j > f->f_nlocals)
j = f->f_nlocals;
if (f->f_nlocals)
- map_to_dict(map, j, locals, fast, 0);
+ map_to_dict(map, j, locals, fast, 0);
if (f->f_ncells || f->f_nfreevars) {
if (!(PyTuple_Check(f->f_code->co_cellvars)
&& PyTuple_Check(f->f_code->co_freevars))) {