From 6bb7b064ffccb8cc848031446923454757fd0331 Mon Sep 17 00:00:00 2001 From: Diane Trout Date: Tue, 8 Jan 2008 02:11:48 +0000 Subject: [PATCH] Remove unnecessary code from the runner.py module --- gaworkflow/runner.py | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/gaworkflow/runner.py b/gaworkflow/runner.py index 72a9273..d82d391 100644 --- a/gaworkflow/runner.py +++ b/gaworkflow/runner.py @@ -89,20 +89,6 @@ class Runner(rpc.XmlRpcBot): logging.debug("reply: " + str(reply)) return reply - - def start(self, daemonize): - """ - Start application - """ - super(Runner, self).start(daemonize) - - - def stop(self): - """ - shutdown application - """ - super(Runner, self).stop() - def getStatusReport(self, fc_num): """ @@ -241,8 +227,7 @@ class Runner(rpc.XmlRpcBot): def main(args=None): - bot = Runner('demobot') - bot.cfg['loglevel'] = 'DEBUG' + bot = Runner() return bot.main(args) if __name__ == "__main__": -- 2.30.2