From e27f7e555c55e2c54d38e7272d4bf492bc01b346 Mon Sep 17 00:00:00 2001 From: Jeremy Fincher Date: Wed, 18 Jun 2003 18:44:16 +0000 Subject: [PATCH] Had to make it handle -O and -p in the getopt jazz. --- src/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bot.py b/src/bot.py index c467a5c28..3e537bea4 100755 --- a/src/bot.py +++ b/src/bot.py @@ -150,7 +150,7 @@ def processConfigFile(filename): reportConfigError(filename, msg) def main(): - (optlist, filenames) = getopt.getopt(sys.argv[1:], 'c:') + (optlist, filenames) = getopt.getopt(sys.argv[1:], 'Opc:') for (option, argument) in optlist: if option == '-c': myLocals = {}