Skip to content

Commit c952ced

Browse files
authored
Merge pull request #596 from julien-duponchelle/fix-bug-none-source
bug-fix-nonesources f string
2 parents 8683499 + c6238a5 commit c952ced

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymysqlreplication/row_event.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ def _dump(self):
633633
row["none_sources"][key] if key in row["none_sources"] else ""
634634
)
635635
if none_source:
636-
print(f"* {key} : row['values'][key] ({none_source})")
636+
print(f"* {key} : {row['values'][key]} ({none_source})")
637637
else:
638638
print(f"* {key} : {row['values'][key]}")
639639

0 commit comments

Comments
 (0)