Skip to content

Commit c6238a5

Browse files
committed
bug-fix-nonesources f string
1 parent 8683499 commit c6238a5

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)