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 5bad231e80
commit 233c463e34

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: