Re: [Pyro-users] passing information into pyro via command line

2007-03-12 Thread Douglas S. Blank
Douglas S. Blank wrote: Belinda, I don't remember the details, but I know that pyrobot stores the string argument to -a in gui.engine.args . You'll have to parse it, maybe something like: args = gui.engine.args.split(,) for a in args: name, value = a.split.(=) I forget how you get the gui

Re: [Pyro-users] passing information into pyro via command line

2007-03-09 Thread Douglas S. Blank
Belinda, I don't remember the details, but I know that pyrobot stores the string argument to -a in gui.engine.args . You'll have to parse it, maybe something like: args = gui.engine.args.split(,) for a in args: name, value = a.split.(=) I forget how you get the gui object from a brain (I'm