From 0c574d830062d7957c2c65081e3e66fc0bb41759 Mon Sep 17 00:00:00 2001 From: Jason Gerard DeRose Date: Mon, 21 Jul 2008 01:58:22 +0000 Subject: 27: Added quick hack for replace('-', '_') problem I'm having --- ipa | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'ipa') diff --git a/ipa b/ipa index 6faa1648e..128eed383 100755 --- a/ipa +++ b/ipa @@ -68,11 +68,12 @@ if len(sys.argv) < 2: print 'Usage: ipa COMMAND [OPTIONS]' sys.exit(2) cmd = sys.argv[1] +pcmd = cmd.replace('-', '_') if cmd == '_api_': print_api() sys.exit() -elif cmd not in api.commands: +elif pcmd not in api.commands: print_commands() print 'ipa: ERROR: unknown command %r' % cmd sys.exit(2) -api.commands[cmd]() +api.commands[pcmd]() -- cgit