[pp:ugoira] log errors for general exceptions

pull/5479/head
Mike Fährmann 6 months ago
parent 40bd145637
commit 3346a377b3
No known key found for this signature in database
GPG Key ID: 5680CA389D365A88

@ -155,7 +155,9 @@ class UgoiraPP(PostProcessor):
self.log.error("Unable to invoke FFmpeg (%s: %s)",
exc.__class__.__name__, exc)
pathfmt.realpath = pathfmt.temppath
except Exception:
except Exception as exc:
print()
self.log.error("%s: %s", exc.__class__.__name__, exc)
pathfmt.realpath = pathfmt.temppath
else:
if self.mtime:

Loading…
Cancel
Save