codegen: Fix typo in variable name

Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
This commit is contained in:
Frediano Ziglio 2015-07-21 17:45:33 +01:00 committed by Christophe Fergeau
parent aa43c0d61e
commit 184feb541a

View File

@ -193,7 +193,7 @@ class CodeWriter:
def unindent(self):
self.indentation -= 4
if self.indentation < 0:
self.indenttation = 0
self.indentation = 0
def begin_block(self, prefix= "", comment = ""):
if len(prefix) > 0: