]> granicus.if.org Git - python/commitdiff
Fix indentation.
authorJeremy Hylton <jeremy@alum.mit.edu>
Tue, 21 Oct 2003 18:10:28 +0000 (18:10 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Tue, 21 Oct 2003 18:10:28 +0000 (18:10 +0000)
Objects/frameobject.c

index 2b042cd4835cb2d006cccc26c36b8fcb5c5c53f8..1c46f642d982875e4168cde71d4eaeb5bcd30209 100644 (file)
@@ -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))) {