We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 52c96c1 commit d489d4bCopy full SHA for d489d4b
migration/lib/mets_manipulator.py
@@ -33,7 +33,8 @@ def process_mets_file(self):
33
try:
34
tree = ET.parse(self.file_path)
35
except Exception as e:
36
- logging.error(f'Error parsing mets file {self.file_path}, skipping')
+ error = f'Error parsing mets file {self.file_path}, skipping'
37
+ logging.error(error)
38
self.ctx.log_issue(self.file_path, error)
39
return
40
0 commit comments