Commit 9735d4e1 authored by kliment's avatar kliment

Merge pull request #11 from k-eex/macros

Fixed macro arguments expansion
parents 95ce7969 cba3ebbe
......@@ -92,7 +92,7 @@ class pronsole(cmd.Cmd):
if ls.startswith('!'):
self.cur_macro += ws + ls[1:] + "\n" # python mode
else:
self.cur_macro += ws + 'self.onecmd("'+ls+'".format(arg))\n' # parametric command mode
self.cur_macro += ws + 'self.onecmd("'+ls+'".format(*arg))\n' # parametric command mode
self.cur_macro_def += l + "\n"
def end_macro(self):
......@@ -137,7 +137,7 @@ class pronsole(cmd.Cmd):
if macro_def.startswith("!"):
self.cur_macro = "def macro(self,*arg):\n "+macro_def[1:]+"\n"
else:
self.cur_macro = "def macro(self,*arg):\n self.onecmd('"+macro_def+"'.format(arg))\n"
self.cur_macro = "def macro(self,*arg):\n self.onecmd('"+macro_def+"'.format(*arg))\n"
self.end_macro()
return
if not self.processing_rc:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment