diff options
| author | jason | 2012-07-21 18:00:42 -0600 |
|---|---|---|
| committer | jason | 2012-07-21 18:00:42 -0600 |
| commit | 6d1c123f0f98d6058fae9635810fa7aad79cf095 (patch) | |
| tree | 2a689f7c8743eebabd4cce4fe53ba17220f52894 | |
| parent | d79ae36d9f22c4df1b87f891150b804f036c1c7b (diff) | |
| download | warmachine-6d1c123f0f98d6058fae9635810fa7aad79cf095.tar.gz warmachine-6d1c123f0f98d6058fae9635810fa7aad79cf095.zip | |
Pong responses are now valid.
| -rw-r--r-- | wmd/actions/passive/pong.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/wmd/actions/passive/pong.py b/wmd/actions/passive/pong.py index 19e12a7..73a1a07 100644 --- a/wmd/actions/passive/pong.py +++ b/wmd/actions/passive/pong.py | |||
| @@ -9,6 +9,6 @@ class RespondToPing(Action): | |||
| 9 | server = obj_data.params[1:] | 9 | server = obj_data.params[1:] |
| 10 | else: | 10 | else: |
| 11 | server = obj_data.params | 11 | server = obj_data.params |
| 12 | msg = "PONG %s" % server | 12 | msg = "PONG :%s" % server |
| 13 | self.log(msg) | 13 | self.log(msg) |
| 14 | irc.rawsend(msg) \ No newline at end of file | 14 | irc.rawsend(msg) \ No newline at end of file |