Skip to content

Commit

Permalink
Make [body] a TEXT column instead of a BLOB.
Browse files Browse the repository at this point in the history
  • Loading branch information
maxhawkins committed Aug 7, 2021
1 parent 4f50ff4 commit c741b9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion google_takeout_to_sqlite/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def get_mbox(mbox_file):
else:
message["date"] = parse_mail_date(delivery_date)

message["body"] = get_email_body(email)
message["body"] = str(get_email_body(email))

yield message
except (TypeError, ValueError, AttributeError, LookupError) as e:
Expand Down

0 comments on commit c741b9b

Please sign in to comment.