Fix Py.SetArgv for systems that don't support GetCommandLineArgs

This commit is contained in:
Benedikt Reinartz 2022-03-30 15:38:30 +02:00
Родитель d2d3ba669f
Коммит d8990839a8
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -122,11 +122,7 @@ public static class Py
args = Enumerable.Empty<string>();
}
SetArgv(
new[] { "" }.Concat(
Environment.GetCommandLineArgs().Skip(1)
)
);
SetArgv(new[] { "" }.Concat(args.Skip(1)));
}
public static void SetArgv(params string[] argv)