Fix InstrumentedFeedSlot

I accidentally called the wrong super method in overriden
finish_exporting
This commit is contained in:
Matt Mayfield 2022-12-19 18:09:43 -05:00
parent 40f4b262d2
commit 0a84ce448c
1 changed files with 1 additions and 1 deletions

View File

@ -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):