Skip to content
This repository was archived by the owner on Oct 23, 2023. It is now read-only.

Commit 78df8b5

Browse files
committed
Fixed bug
1 parent f07e256 commit 78df8b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ def apply_file(self):
9494
self._get_host_port()
9595

9696
def _apply_arg(self, name, args):
97-
value = getattr(args, name)
97+
value = getattr(args, name, None)
9898
if value is not None and value is not False:
9999
setattr(self, name, value)
100100

0 commit comments

Comments
 (0)