diff options
author | shersonb <brian.sherson@gmail.com> | 2014-03-24 21:07:37 -0700 |
---|---|---|
committer | shersonb <brian.sherson@gmail.com> | 2014-03-24 21:07:37 -0700 |
commit | b5ec97e617d71ca1e7703b8492285246971efbc3 (patch) | |
tree | fd65073deaa150cb313e51829accd86c805b4aca /irc.py | |
parent | c53c4c03a44e6a30f6b7c127791f9570af232080 (diff) |
Fixing throttle interval for WHO and MODE requests.
Diffstat (limited to 'irc.py')
-rw-r--r-- | irc.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2458,7 +2458,7 @@ class Connection(object): if len(self.throttledata) == 0 or self.throttledata[-1] < T - 2: self.throttled = False else: - T = max(T, self.throttledata[-1] + 1) + T = max(T, self.throttledata[-1] + 0.125) self.throttledata.append(T) with self._sendline: self._outgoing.append((T, line, origin)) |