Fix 4 tests by str()-ing a logged exception

This commit is contained in:
Bruno Cauet 2015-01-04 16:40:41 +01:00
parent 7df8bef8b7
commit e2d3ba1c23

View file

@ -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):