Bug fix: Must name the argument for Server:main().

This commit is contained in:
David Shrewsbury
2012-10-01 17:30:27 -04:00
parent 2a6d816439
commit 449bd69f8d
2 changed files with 2 additions and 2 deletions

View File

@@ -87,6 +87,6 @@ def main():
logger.critical("Invalid group: %s" % args.group) logger.critical("Invalid group: %s" % args.group)
return 1 return 1
with context: with context:
server.main(args) server.main(args=args)
return 0 return 0

View File

@@ -227,6 +227,6 @@ def main():
return 1 return 1
with context: with context:
server.main(args) server.main(args=args)
return 0 return 0