From dcfa51cd00349d84fb40f6a1058282a38249b9f7 Mon Sep 17 00:00:00 2001 From: Martinez Date: Mon, 8 Jun 2015 21:09:49 +0200 Subject: [PATCH] fix wrong call in template.py --- template.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template.py b/template.py index ff299dc..bbdb0c5 100644 --- a/template.py +++ b/template.py @@ -22,7 +22,7 @@ class ConfigurationError(Exception): # -------------------------------------------------- if __name__ == '__main__': - main = over.core.app.Main('PROGRAM_NAME', version.str, 'AO-JSL') + main = over.core.app.Main('short-name', 'Human Readable Name', version.str, 'LICENSE', use_cfg_file=False) main.add_option('option', 'type', 'default', 'Description.', short_name='s') main.add_help('Description', ['What it does.']) main.enable_help('h')