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
I'm trying to parse quotes on logfmt format but, the value after the quote become new key with value "True". import logfmt from logfmt import format import io raw_text=io.StringIO("ts=1579739313\"80007168") rawdata=logfmt.parse(raw_text) for i in rawdata: print(i)
output {'ts': '1579739313', '80007168': True}
Not sure how it got to
True
there but this behavior is not correct :)The text was updated successfully, but these errors were encountered: