Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Lib/sqlite3/dump.py
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
  • Loading branch information
CorvinM and erlend-aasland authored Aug 30, 2023
commit 0643ffcf07fa0381690843cc60fb975fe5912c09
2 changes: 1 addition & 1 deletion Lib/sqlite3/dump.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def _force_decode(bs, *args, **kwargs):
try:
return bs.decode(*args, **kwargs)
except UnicodeDecodeError:
return "".join(chr(c) for c in bs)
return "".join([chr(c) for c in bs])

def _iterdump(connection):
"""
Expand Down