From c45e05cffe64eab129799177b3b555f1d3831468 Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 8 Jan 2012 12:52:11 +0000 Subject: [PATCH] recognise -i as valid option, of course --- direct/src/p3d/pdeploy.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/p3d/pdeploy.py b/direct/src/p3d/pdeploy.py index 007ac9dd63..b95d1aad19 100644 --- a/direct/src/p3d/pdeploy.py +++ b/direct/src/p3d/pdeploy.py @@ -166,7 +166,7 @@ iconFiles = [] includeRequires = False try: - opts, args = getopt.getopt(sys.argv[1:], 'n:N:v:o:t:P:csl:L:a:A:e:h') + opts, args = getopt.getopt(sys.argv[1:], 'n:N:v:o:t:P:csl:L:a:A:e:i:h') except getopt.error, msg: usage(1, msg or 'Invalid option')