From 174d276d8cc90412024b151c8d26c586c6a88066 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Tue, 21 Oct 2003 18:10:28 +0000 Subject: Fix indentation. --- Objects/frameobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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))) { -- cgit v0.12