Skip to content

Commit caf507e

Browse files
committed
adding is_list_like check for excel, pandas-dev#8188
1 parent 4aa0e0a commit caf507e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

pandas/io/excel.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,8 @@ def _conv_value(val):
401401
val = bool(val)
402402
elif isinstance(val, Period):
403403
val = "%s" % val
404-
404+
elif com.is_list_like(val):
405+
val = str(val)
405406
return val
406407

407408

0 commit comments

Comments
 (0)