Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix 3.5 compatibility
  • Loading branch information
yijxie committed Aug 6, 2019
commit 2faedfa16e5254d2b3551f557bd1ae3ebde89b6b
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ async def process_events(self, events):
self._id = str(uuid.uuid4())

def __repr__(self):
return f'EventProcessor: id {self._id}'
return 'EventProcessor: id {}'.format(self._id)

async def start(self):
"""Start the EventProcessor.
Expand Down