Skip to content

Commit 92717b8

Browse files
committed
Fix #497
1 parent 83f6b5e commit 92717b8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Source/VarPyth.pas

+1-1
Original file line numberDiff line numberDiff line change
@@ -2154,7 +2154,7 @@ procedure VarPyToStrings(const AValue : Variant; const AStrings: TStrings);
21542154
V: Variant;
21552155
begin
21562156
for V in VarPyIterate(AValue) do
2157-
AStrings.Add(V)
2157+
AStrings.Add(VarPythonAsString(V))
21582158
end;
21592159

21602160
initialization

0 commit comments

Comments
 (0)