##// END OF EJS Templates
Beta version!
Juan C. Espinoza -
r1330:959603ec6724
parent child
Show More
1 NO CONTENT: file renamed from LICENSE to LICENSE.txt
NO CONTENT: file renamed from LICENSE to LICENSE.txt
@@ -155,7 +155,7 def search(nextcommand):
155 try:
155 try:
156 args = getArgs(nextcommand)
156 args = getArgs(nextcommand)
157 doc = getDoc(nextcommand)
157 doc = getDoc(nextcommand)
158 log.success('{}\n{}\n\narguments:\n {}'.format(
158 log.success('{}\n{}\n\nparameters:\n {}'.format(
159 nextcommand, doc, ', '.join(args)), ''
159 nextcommand, doc, ', '.join(args)), ''
160 )
160 )
161 except Exception as e:
161 except Exception as e:
@@ -321,9 +321,9 class Project(Process):
321
321
322 ELEMENTNAME = 'Project'
322 ELEMENTNAME = 'Project'
323
323
324 def __init__(self):
324 def __init__(self, name=''):
325
325
326 Process.__init__(self, name='')
326 Process.__init__(self)
327 self.id = '1'
327 self.id = '1'
328 if name:
328 if name:
329 self.name = '{} ({})'.format(Process.__name__, name)
329 self.name = '{} ({})'.format(Process.__name__, name)
General Comments 0
You need to be logged in to leave comments. Login now