diff options
author | Frediano Ziglio <fziglio@redhat.com> | 2015-07-21 17:45:33 +0100 |
---|---|---|
committer | Christophe Fergeau <cfergeau@redhat.com> | 2015-07-23 11:11:16 +0200 |
commit | 184feb541a86a697d263e1065e12a01c53bab289 (patch) | |
tree | 056bb6b15c8f1cb6829899277213b5a2e687807b /python_modules | |
parent | aa43c0d61e0b5d309fca5fb2016c9d0a7fb871b1 (diff) |
codegen: Fix typo in variable name
Signed-off-by: Frediano Ziglio <fziglio@redhat.com>
Diffstat (limited to 'python_modules')
-rw-r--r-- | python_modules/codegen.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |