diff options
author | mathieui <mathieui@mathieui.net> | 2012-01-11 18:13:32 +0100 |
---|---|---|
committer | Florent Le Coz <louiz@louiz.org> | 2012-01-26 10:05:36 +0100 |
commit | 88f7e690bda7e53e41b9cfaac2027c76fc774727 (patch) | |
tree | 52fc0fa95548a223c99c631842b30e2566bc2047 /plugins | |
parent | 08bf7647439793b7c87c521efe0a462be85cbbcc (diff) | |
download | poezio-88f7e690bda7e53e41b9cfaac2027c76fc774727.tar.gz poezio-88f7e690bda7e53e41b9cfaac2027c76fc774727.tar.bz2 poezio-88f7e690bda7e53e41b9cfaac2027c76fc774727.tar.xz poezio-88f7e690bda7e53e41b9cfaac2027c76fc774727.zip |
Fix the alias plugin
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/alias.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/alias.py b/plugins/alias.py index 2517e2b9..d6a46b6f 100644 --- a/plugins/alias.py +++ b/plugins/alias.py @@ -21,7 +21,7 @@ class Plugin(BasePlugin): if alias in self.core.commands or alias in self.commands: self.core.information('Alias: command already exists', 'Error') return - self.commands[alias] = lambda args: self.get_command(command)(parse(common.shell_split(args), tmp_args)) + self.commands[alias] = lambda arg: self.get_command(command)(parse(arg, tmp_args)) self.add_command(alias, self.commands[alias], 'This command is an alias for /%s %s' %( command, tmp_args)) self.core.information('Alias /%s successfuly created' % alias, 'Info') |