Miserlou / chords2midi

Create MIDI files from numerical chord progressions!
352 stars 21 forks source link

two "+"s in a row in string concat #13

Closed zenfish closed 5 years ago

zenfish commented 5 years ago

Line 124 in c2m.py dies (triggered by an existing file; it tries to add a timestamp) -

filename = self.vargs['key'] + '-' + '-'.join(progression) + '-' + str(self.vargs['bpm']) + + '-' + str(int(time.time())) + '.mid'

subbing one plus for two ('+ +' -> '+') seems to work.

Miserlou commented 5 years ago

Should be fixed for a while now

Miserlou commented 5 years ago

Thanks for reporting