install.py

changeset 6906
a34f0dc442a1
parent 6863
e900929889dd
child 6939
af0ca76e26fd
diff -r 889339ffe6cf -r a34f0dc442a1 install.py
--- a/install.py	Thu Mar 28 19:13:09 2019 +0100
+++ b/install.py	Sat Mar 30 12:31:50 2019 +0100
@@ -1905,13 +1905,16 @@
     try:
         if sys.platform.startswith(("win", "cygwin")):
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:",
+                ["help", "pyqt=", "no-apis"])
         elif sys.platform == "darwin":
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:i:m:n:p:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:i:m:n:p:",
+                ["help", "pyqt=", "no-apis"])
         else:
             optlist, args = getopt.getopt(
-                argv[1:], "chxyza:b:d:f:i:", ["help", "pyqt=", "noapis"])
+                argv[1:], "chxyza:b:d:f:i:",
+                ["help", "pyqt=", "no-apis"])
     except getopt.GetoptError as err:
         print(err)
         usage()

eric ide

mercurial