Bug fix: Must name the argument for Server:main().
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user