decorator.py: Use the singular 'they' pronoun.

This commit is contained in:
Vaida Plankyte
2017-07-05 11:43:37 +02:00
committed by Tim Abbott
parent 5a3d3ae291
commit 8c4ee83980

View File

@@ -652,7 +652,7 @@ def rate_limit_user(request, user, domain):
request._ratelimit_applied_limits = True
request._ratelimit_secs_to_freedom = time
request._ratelimit_over_limit = ratelimited
# Abort this request if the user is over her rate limits
# Abort this request if the user is over their rate limits
if ratelimited:
statsd.incr("ratelimiter.limited.%s.%s" % (type(user), user.id))
raise RateLimited()