Remove redundant error reporting line

Fixes #198.
This commit is contained in:
Joe
2017-10-08 22:38:51 +02:00
committed by GitHub
parent f54c4bb040
commit fef437f93e

View File

@@ -294,18 +294,17 @@ class Program:
record=self._record)
break
except mbngs.NotFoundException, e:
logger.warning("release not found: %r" % (e, ))
break
except musicbrainzngs.NetworkError, e:
self._stdout.write("Warning: network error: %r\n" % (e, ))
logger.warning("network error: %r" % (e, ))
break
except mbngs.MusicBrainzException, e:
self._stdout.write("Warning: %r\n" % (e, ))
logger.warning("musicbrainz exception: %r" % (e, ))
time.sleep(5)
continue
if not metadatas:
if e:
self._stdout.write("Error: %r\n" % (e, ))
self._stdout.write('Continuing without metadata\n')
if metadatas: