You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
...
File "/usr/local/lib/python3.9/site-packages/vobject/base.py", line 1219, in backslashEscape
s = s.replace("\\", "\\\\").replace(";", "\;").replace(",", "\,")
AttributeError: 'int' object has no attribute 'replace'
The text was updated successfully, but these errors were encountered:
tieugene
changed the title
VTODO Sequence cannot be int
VTODO int cannot be int
Dec 20, 2021
It seems like it'd be better to accept native integer types for integer values (and floats for floats, etc). I need to look at this a bit more, but superficially, it seems like native type values should be converted to strings, and only native string values should need backslash quoting.
The root of this seems to be that the line (a ContentLine instance) has its behavior set to TextBehavior.
Code:
Result:
The text was updated successfully, but these errors were encountered: