Changeset 1460 for trunk/peppy/major.py
- Timestamp:
- 07/07/08 07:41:00 (5 months ago)
- Files:
-
- 1 modified
-
trunk/peppy/major.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
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
