Skip to content

Commit 0aefe0f

Browse files
committed
Fixes Greek "I" inserted inadvertently.
1 parent 5682961 commit 0aefe0f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/PythonEngine.pas

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4393,7 +4393,7 @@ procedure TPythonEngine.SetProgramArgs;
43934393
else
43944394
TempS := ParamStr(I);
43954395
{$IFDEF POSIX}
4396-
WL[Ι] := UnicodeStringToUCS4String(TempS);
4396+
WL[I] := UnicodeStringToUCS4String(TempS);
43974397
{$ELSE}
43984398
WL[I] := UnicodeString(TempS);
43994399
{$ENDIF}

0 commit comments

Comments
 (0)