From 82cf5e367faa1b20be6dd9f89ef497ae7c75bbd4 Mon Sep 17 00:00:00 2001 From: Cristian C Lalescu <Cristian.Lalescu@ds.mpg.de> Date: Tue, 26 Jan 2016 21:33:07 +0100 Subject: [PATCH] update comment for new .launch method --- bfps/__main__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bfps/__main__.py b/bfps/__main__.py index 9e89964b..150d708b 100644 --- a/bfps/__main__.py +++ b/bfps/__main__.py @@ -46,7 +46,7 @@ def main(): # first option is the choice of base class or -h or -v # all other options are passed on to the base_class instance opt = parser.parse_args(sys.argv[1:2]) - # error is thrown if first option is not a base class, so Launcher + # error is thrown if first option is not a base class, so launch # cannot be executed by mistake. c = eval('{0}()'.format(opt.base_class)) c.launch(args = sys.argv[2:]) -- GitLab