cmcginty / flacsync

Recursively mirror a directory tree of FLAC audio files to AAC or OGG.
http://packages.python.org/flacsync/
Other
30 stars 8 forks source link

when converting to mp3 would receive spurious error messages "variable 'err' referenced before..." #5

Open mainmeister opened 11 years ago

mainmeister commented 11 years ago

Found bug in encoder.py, class p3Encoder, method set_cover. Variable err was not initialize outside of the if statement but tested outside of the if block. Added line 379 err='' just before the if statement.