removed the jobInfo object and let the job execute and store all data; looks better to me now

This commit is contained in:
Johannes Findeisen 2013-11-05 00:24:31 +01:00
commit fdacf38062
4 changed files with 73 additions and 79 deletions

View file

@ -88,8 +88,8 @@ def parse_args():
return parser.parse_args()
def handle_job(jobInfo):
jobInfo.handle_call()
def handle_job(job):
job.handle_call()
def main():