mirror of https://github.com/scrapy/scrapy.git
Fix InstrumentedFeedSlot
I accidentally called the wrong super method in overriden finish_exporting
This commit is contained in:
parent
40f4b262d2
commit
0a84ce448c
|
|
@ -690,7 +690,7 @@ class InstrumentedFeedSlot(_FeedSlot):
|
|||
|
||||
def finish_exporting(self):
|
||||
self.update_listener('finish')
|
||||
super().start_exporting()
|
||||
super().finish_exporting()
|
||||
|
||||
@classmethod
|
||||
def subscribe__listener(cls, listener):
|
||||
|
|
|
|||
Loading…
Reference in New Issue