mirror of
https://github.com/beetbox/beets.git
synced 2026-02-23 07:44:38 +01:00
Fix 4 tests by str()-ing a logged exception
This commit is contained in:
parent
7df8bef8b7
commit
e2d3ba1c23
1 changed files with 1 additions and 1 deletions
|
|
@ -509,7 +509,7 @@ class Item(LibModel):
|
|||
self.write(path)
|
||||
return True
|
||||
except FileOperationError as exc:
|
||||
log.error(exc)
|
||||
log.error(str(exc))
|
||||
return False
|
||||
|
||||
def try_sync(self, write=None):
|
||||
|
|
|
|||
Loading…
Reference in a new issue