Changeset 1460
- Timestamp:
- 07/07/08 07:41:00 (2 months ago)
- Location:
- trunk/peppy
- Files:
-
- 2 modified
-
mainmenu.py (modified) (1 diff)
-
major.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/peppy/mainmenu.py
r1459 r1460 518 518 519 519 def processMinibuffer(self, minibuffer, mode, text): 520 self.mode.startCommandLine(text )520 self.mode.startCommandLine(text, expand=True) 521 521 522 522 class StopScript(RunMixin, SelectAction): -
trunk/peppy/major.py
r1459 r1460 1065 1065 return cmd 1066 1066 1067 def startCommandLine(self, cmd ):1067 def startCommandLine(self, cmd, expand=False): 1068 1068 """Attempt to create a process using the command line""" 1069 1069 if hasattr(self, 'process'): … … 1078 1078 self.save() 1079 1079 1080 cmd = self.expandCommandLine(cmd) 1080 if expand: 1081 cmd = self.expandCommandLine(cmd) 1081 1082 if self.classprefs.output_log == 0: 1082 1083 output = self
