GoogleCodeArchives / flac2all

Automatically exported from code.google.com/p/flac2all
0 stars 0 forks source link

The -t option doesn't work #12

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Run flac2all (v3.38) with the option -t1

Traceback (most recent call last):
  File "./flac2all_v3.38.py", line 758, in <module>
    print "We are running %d simultaneous transcodes" % opts['threads']
TypeError: %d format: a number is required, not str

Add this line to fix it:

opts['threads'] = int(opts['threads'])

Original issue reported on code.google.com by brian@bri1.com on 23 Feb 2014 at 6:08

GoogleCodeExporter commented 9 years ago
Duplicate of issue #10.

Can you check revision 41 or later of SVN to see if the fix works for you?

Original comment by i...@ziva-vatra.com on 23 Feb 2014 at 7:22