Details
-
Bug
-
Status: Resolved
-
Critical
-
Resolution: Fixed
-
2.1.0
-
None
Description
The code should be changed from store_false to store_true in order for the --https cli-opt to work:
FROM:
parser.add_option('--https', default=False, action="store_false", dest="https", help="Use https protocol for connection to the server")
TO:
parser.add_option('--https', default=False, action="store_true", dest="https", help="Use https protocol for connection to the server")
Attachments
Attachments
Issue Links
- links to