From 233c463e3461c5846f125b25c37c6f74b36f1f3c Mon Sep 17 00:00:00 2001 From: Frediano Ziglio Date: Tue, 21 Jul 2015 17:45:33 +0100 Subject: codegen: Fix typo in variable name Signed-off-by: Frediano Ziglio --- python_modules/codegen.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python_modules/codegen.py b/python_modules/codegen.py index f324498..55500b7 100644 --- a/python_modules/codegen.py +++ b/python_modules/codegen.py @@ -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: -- cgit