diff options
author | Graham Northup <grissess@nexusg.org> | 2017-10-02 16:14:07 -0400 |
---|---|---|
committer | Graham Northup <grissess@nexusg.org> | 2017-10-02 16:14:07 -0400 |
commit | 4135f3a6f2b763fa6c952e2fd580b30b9e31d548 (patch) | |
tree | ad26f120554f8d20e1a94aef2087407c675f1490 /shiv.py | |
parent | 12f9e5ecaa7c4362d80b4aa5a5391b9132ac1cab (diff) |
Minor bugfixes and featurefixes:
- shiv now assumes -a if you give it no other options;
- broadcast now displays a cute spinny and progress bar when playing
without -v set
- drums.py obeys -V when testing (-t)
Diffstat (limited to 'shiv.py')
-rw-r--r-- | shiv.py | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -30,6 +30,23 @@ parser.set_defaults(height=20, group=[]) options, args = parser.parse_args() +if not any(( + options.number, + options.groups, + options.notes, + options.notes_stream, + options.histogram, + options.vel_hist, + options.duration, + options.duty_cycle, + options.aux, + options.meta, + options.histogram_tracks, + options.vel_hist_tracks, +)): + print 'No computations specified! Assuming you meant --almost-all...' + options.almost_all = True + if options.almost_all or options.all: options.number = True options.groups = True |