Merge pull request #8 from a3ng7n:fix/random-decode-problem

fix/random-decode-problem
master
Aaron 2020-07-07 16:05:46 -07:00 committed by GitHub
commit 4b6666d328
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ def parse(input, format, **kwargs):
for pair in pairs:
data = pair.split(b"=")
datum[data[0].decode()] = data[1].decode()
datum[data[0].decode()] = data[1].decode('utf-8', 'ignore')
datums.append(datum)