소스 검색

Fake-implement _process_message() in IRCConnection.

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

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

@@ -108,6 +108,10 @@ class IRCConnection(object):
if line[0] == "PING": # If we are pinged, pong back
self.pong(line[1][1:])

def _process_message(self, line):
"""To be overridden in subclasses."""
raise NotImplementedError()

@property
def host(self):
"""The hostname of the IRC server, like ``"irc.freenode.net"``."""


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