Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions faraday/client/bin/fplugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -176,15 +176,15 @@ def main():
'-u',
'--url',
help='Faraday Server URL. Example: http://localhost:5985',
default='http://localhost:5985')
default=CONF.getServerURI())

parser.add_argument(
'--username',
required=True)
default=CONF.getAPIUsername())

parser.add_argument(
'--password',
required=True)
default=CONF.getAPIPassword())

# Only parse known args. Unknown ones will be passed on the the called script
args, unknown = parser.parse_known_args()
Expand Down