many cleanups and new docs
This commit is contained in:
parent
18150d8cc1
commit
51cbfff880
69 changed files with 261 additions and 239 deletions
|
|
@ -8,7 +8,7 @@ class Command:
|
|||
self.error = ""
|
||||
|
||||
def __str__(self):
|
||||
return command
|
||||
return self.command
|
||||
|
||||
def hasProcessed(self):
|
||||
return self.output != "" and self.error != ""
|
||||
|
|
@ -25,4 +25,4 @@ class Command:
|
|||
def getError(self):
|
||||
if not self.hasProcessed():
|
||||
self.doProcess()
|
||||
return self.error
|
||||
return self.error
|
||||
|
|
@ -20,8 +20,4 @@ class JobInfo:
|
|||
self.log = log
|
||||
|
||||
def handleCall(self):
|
||||
pass
|
||||
|
||||
|
||||
|
||||
|
||||
pass
|
||||
|
|
@ -56,6 +56,4 @@ class Logger():
|
|||
self.log.critical(message)
|
||||
|
||||
def close(self):
|
||||
logging.shutdown()
|
||||
|
||||
|
||||
logging.shutdown()
|
||||
Loading…
Add table
Add a link
Reference in a new issue