Fixed ommitted tags, bug report Konstantin Pastbin.
/mp3togo/track.py
blob:98f3dce73c4b6312636e85d819396f0270a7e06a -> blob:a81043dc5a799d17e259c8176f2647a4cdea9b22
--- mp3togo/track.py
+++ mp3togo/track.py
@@ -223,7 +223,13 @@ class Track:
# tag files from the cache as well, brwarning may have changed
if not opts['notags']:
def tag_output():
- self.tags.write(self._outname)
+ try:
+ self.tags.write(self._outname)
+ except:
+ if opts['verbosity'] > 3:
+ import sys, traceback
+ traceback.print_exc(file=sys.stdout)
+ raise
return True
job = task.SimpleTask(self, tag_output, None,
lambda: True, name="Tagging")