fixes 711 - proper cli arguments parsing
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -109,7 +109,7 @@ else: | ... | @@ -109,7 +109,7 @@ else: |
109 | for arg in SYS_ARGS: | 109 | for arg in SYS_ARGS: |
110 | found = False | 110 | found = False |
111 | for native in ENGINE_NATIVE_ARGS: | 111 | for native in ENGINE_NATIVE_ARGS: |
112 | if arg.startswith('--%s' % native): | 112 | if arg == '--%s' % native: |
113 | ENGINE_ARGS.append(arg) | 113 | ENGINE_ARGS.append(arg) |
114 | found = True | 114 | found = True |
115 | if not found: | 115 | if not found: | ... | ... |
-
Please register or sign in to post a comment