110 try: |
110 try: |
111 optlist, args = getopt.getopt(argv[1:], "hy") |
111 optlist, args = getopt.getopt(argv[1:], "hy") |
112 except getopt.GetoptError: |
112 except getopt.GetoptError: |
113 usage() |
113 usage() |
114 |
114 |
115 for opt, arg in optlist: |
115 for opt, _arg in optlist: |
116 if opt in ["-h", "--help"]: |
116 if opt in ["-h", "--help"]: |
117 usage(0) |
117 usage(0) |
118 |
118 |
119 print("\nUninstalling eric6 debug clients ...") |
119 print("\nUninstalling eric6 debug clients ...") |
120 uninstallEricDebugClients() |
120 uninstallEricDebugClients() |