From 959603ec672499c9eae2cc00d9a72d7370c62ba7 2020-08-25 21:01:08 From: Juan C. Espinoza Date: 2020-08-25 21:01:08 Subject: [PATCH] Beta version! --- diff --git a/LICENSE b/LICENSE.txt similarity index 100% rename from LICENSE rename to LICENSE.txt diff --git a/schainpy/cli/cli.py b/schainpy/cli/cli.py index ef7089b..897b198 100644 --- a/schainpy/cli/cli.py +++ b/schainpy/cli/cli.py @@ -155,7 +155,7 @@ def search(nextcommand): try: args = getArgs(nextcommand) doc = getDoc(nextcommand) - log.success('{}\n{}\n\narguments:\n {}'.format( + log.success('{}\n{}\n\nparameters:\n {}'.format( nextcommand, doc, ', '.join(args)), '' ) except Exception as e: diff --git a/schainpy/controller.py b/schainpy/controller.py index c11c6f2..a020768 100644 --- a/schainpy/controller.py +++ b/schainpy/controller.py @@ -321,9 +321,9 @@ class Project(Process): ELEMENTNAME = 'Project' - def __init__(self): + def __init__(self, name=''): - Process.__init__(self, name='') + Process.__init__(self) self.id = '1' if name: self.name = '{} ({})'.format(Process.__name__, name)