From 449bd69f8dbc847d00ccf8bc931bbd140c86aece Mon Sep 17 00:00:00 2001 From: David Shrewsbury Date: Mon, 1 Oct 2012 17:30:27 -0400 Subject: [PATCH] Bug fix: Must name the argument for Server:main(). --- libra/mgm/mgm.py | 2 +- libra/worker/worker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/libra/mgm/mgm.py b/libra/mgm/mgm.py index e030afe5..2697043c 100644 --- a/libra/mgm/mgm.py +++ b/libra/mgm/mgm.py @@ -87,6 +87,6 @@ def main(): logger.critical("Invalid group: %s" % args.group) return 1 with context: - server.main(args) + server.main(args=args) return 0 diff --git a/libra/worker/worker.py b/libra/worker/worker.py index b0f4b691..51e5bae3 100644 --- a/libra/worker/worker.py +++ b/libra/worker/worker.py @@ -227,6 +227,6 @@ def main(): return 1 with context: - server.main(args) + server.main(args=args) return 0