diff options
author | Florent Le Coz <louiz@louiz.org> | 2011-11-16 20:43:17 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2011-11-16 20:43:17 +0100 |
commit | 27e587118bac2ee70a076875f0fb9fddcc334c9b (patch) | |
tree | c4796d375df2779095eb33014d3b72e44babad54 /plugins | |
parent | b2c84055dff5284a36d4bbb3311fd1532f530f56 (diff) | |
parent | cae620e3efea2ed3428a8c3076cc8696431723e8 (diff) | |
download | poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.gz poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.bz2 poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.tar.xz poezio-27e587118bac2ee70a076875f0fb9fddcc334c9b.zip |
Merge branch 'master' of http://git.louiz.org/poezio
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/status.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/status.py b/plugins/status.py index 7eb27cb5..71b2315d 100644 --- a/plugins/status.py +++ b/plugins/status.py @@ -17,5 +17,5 @@ class Plugin(BasePlugin): '/afk [status message]\nAfk: Set your status as afk (away from keyboard).') self.add_command('away', lambda line: self.core.command_status('away '+line), '/away [status message]\nAway: Set your status as away.') - self.add_command('away', lambda line: self.core.command_status('away '+line), + self.add_command('available', lambda line: self.core.command_status('available '+line), '/available [status message]\nAvailable: Set your status as available.') |