Changeset 10595
- Timestamp:
- 02/28/11 13:53:59 (2 years ago)
- Files:
-
- 1 modified
-
ossiedev/trunk/tools/wavedash/src/wavecli.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ossiedev/trunk/tools/wavedash/src/wavecli.py
r10586 r10595 30 30 31 31 if options.waveformToInstall: 32 installed = ctrlr.installWaveform(options.waveformToInstall, False) 33 if installed: 34 print 'Successfully installed ' + installed 32 if options.waveformToInstall in [wave.getName() for wave in ctrlr.model.getSystemWaveforms()]: 33 installed = ctrlr.installWaveform(options.waveformToInstall, False) 34 if installed: 35 print 'Successfully installed ' + installed 36 else: 37 print options.waveformToInstall + ' not found.' 35 38 36 39 elif options.waveformToStart: