Fix ListenerPostfetchProcessor typo

Use `self.listener` instead of `listener`.
This commit is contained in:
Vangelis Banos 2018-03-08 08:01:54 +00:00
parent 530aaba461
commit 2f84fa8dbf

View File

@ -235,7 +235,7 @@ class ListenerPostfetchProcessor(BaseStandardPostfetchProcessor):
self.listener.stop()
except:
self.logger.error(
'%s raised exception', listener.stop, exc_info=True)
'%s raised exception', self.listener.stop, exc_info=True)
def timestamp17():
now = datetime.datetime.utcnow()