Skip to content

Commit

Permalink
fix: Add fix from manual testing
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Apr 10, 2024
1 parent 1913fe2 commit 68cc827
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kingfisher_scrapy/log_formatter.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ def _omit_data(self, method, item, *args):
"""
Omits an item's `data` value from the log message.
"""
item = item.copy()
item = item.__dict__.copy()
item.pop('data', None)
return getattr(super(), method)(item, *args)

0 comments on commit 68cc827

Please sign in to comment.