summaryrefslogtreecommitdiff
path: root/cheetah/TemplateCmdLineIface.py
diff options
context:
space:
mode:
Diffstat (limited to 'cheetah/TemplateCmdLineIface.py')
-rw-r--r--cheetah/TemplateCmdLineIface.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/cheetah/TemplateCmdLineIface.py b/cheetah/TemplateCmdLineIface.py
index 6690b6d..9787577 100644
--- a/cheetah/TemplateCmdLineIface.py
+++ b/cheetah/TemplateCmdLineIface.py
@@ -58,7 +58,7 @@ class CmdLineIface:
sys.exit(2)
for o, a in self._opts:
- if o in ('-h','--help'):
+ if o in ('-h', '--help'):
print(self.usage())
sys.exit()
if o == '--env':
@@ -100,8 +100,8 @@ and collect the output. It can prepend the shell ENVIRONMENT or a pickled
Python dictionary to the template's $placeholder searchList, overriding the
defaults for the $placeholders.
-""" % {'scriptName':self._scriptName,
- 'Version':Version,
+""" % {'scriptName': self._scriptName,
+ 'Version': Version,
}
# vim: shiftwidth=4 tabstop=4 expandtab