Skip to content
Snippets Groups Projects
Commit a215ab22 authored by Pavel KORSHUNOV's avatar Pavel KORSHUNOV
Browse files

Setting specified protocol correctly

parent 1804d585
No related branches found
No related tags found
No related merge requests found
...@@ -252,7 +252,7 @@ def initialize(parsers, command_line_parameters=None, skips=[]): ...@@ -252,7 +252,7 @@ def initialize(parsers, command_line_parameters=None, skips=[]):
# protocol command line override # protocol command line override
if args.protocol is not None: if args.protocol is not None:
args.database.set_protocol(args.protocol) # set the protocol if it is specified args.database.protocol = args.protocol # set the protocol if it is specified
protocol = 'None' if args.database.protocol is None else args.database.protocol protocol = 'None' if args.database.protocol is None else args.database.protocol
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment