Commit 8b41b700 8b41b70055f43e2e004951762472fb3af0235305 by Nicolas Perriault

fixes 711 - proper cli arguments parsing

1 parent 1027e05d
......@@ -109,7 +109,7 @@ else:
for arg in SYS_ARGS:
found = False
for native in ENGINE_NATIVE_ARGS:
if arg.startswith('--%s' % native):
if arg == '--%s' % native:
ENGINE_ARGS.append(arg)
found = True
if not found:
......