fix ratelimit

master
James Sigurðarson 2016-08-12 14:47:57 +01:00
parent 94e92b0f74
commit 99edbc97ec
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class RateLimit(object):
self.current = min(p.execute()[0], limit)
remaining = property(lambda x: x.limit - x.current)
over_limit = property(lambda x: x.current >= x.limit)
over_limit = property(lambda x: x.current > x.limit)
def get_view_rate_limit():