소스 검색

time.sleep -> sleep

tags/v0.1^2
Ben Kurtovic 12 년 전
부모
커밋
20a485f6b9
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      earwigbot/irc/connection.py

+ 1
- 1
earwigbot/irc/connection.py 파일 보기

@@ -90,7 +90,7 @@ class IRCConnection(object):
with self._send_lock:
time_since_last = time() - self._last_send
if time_since_last < 0.75:
time.sleep(0.75 - time_since_last)
sleep(0.75 - time_since_last)
try:
self._sock.sendall(msg + "\r\n")
except socket.error:


불러오는 중...
취소
저장