Fix minor typo in exception

This commit is contained in:
Travis Ralston 2018-09-13 11:51:12 -06:00 committed by GitHub
parent 7c27c4d51c
commit f1a7264663
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -196,7 +196,7 @@ class Stream(object):
)
if len(rows) >= MAX_EVENTS_BEHIND:
raise Exception("stream %s has fallen behined" % (self.NAME))
raise Exception("stream %s has fallen behind" % (self.NAME))
else:
rows = yield self.update_function(
from_token, current_token,