diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2011-05-07 18:29:53 +0200 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2011-05-07 18:29:53 +0200 |
commit | bce12fd38c7a3651673e9b26ad1816870db86eea (patch) | |
tree | 976fd380a4ef05b091edbc1ec4ebfe74b6edd7af /test | |
parent | d961711797a414592194a7a628a0151d89afbccc (diff) | |
download | weechat-bce12fd38c7a3651673e9b26ad1816870db86eea.zip |
weercd.py: fix typo, add action in weercd.conf
Diffstat (limited to 'test')
-rw-r--r-- | test/weercd.conf | 1 | ||||
-rwxr-xr-x | test/weercd.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/test/weercd.conf b/test/weercd.conf index 20748a0e5..6d5a1a457 100644 --- a/test/weercd.conf +++ b/test/weercd.conf @@ -4,6 +4,7 @@ host= port=7777 debug=off +action=flood wait=0 sleep=0 maxchans=5 diff --git a/test/weercd.py b/test/weercd.py index c0c07ff44..3bc304eae 100755 --- a/test/weercd.py +++ b/test/weercd.py @@ -145,7 +145,7 @@ class Client: if not self.quit: action = getoption('action') if action == 'flood': - self.acion_flood() + self.action_flood() elif action == 'user': self.action_user() |