Skip to content
Snippets Groups Projects
Verified Commit d709fd24 authored by Antoine R. Dumont's avatar Antoine R. Dumont
Browse files

Fix pep8 violation: do not use bare except

parent 25ba3004
No related branches found
Tags v0.0.42
No related merge requests found
......@@ -81,7 +81,7 @@ class ContentMetadataIndexer(ContentIndexer):
result['translated_metadata'] = compute_metadata(context, data)
# a twisted way to keep result with indexer object for get_results
self.results.append(result)
except:
except Exception:
self.log.exception(
"Problem during tool retrieval of metadata translation")
return result
......
......@@ -80,7 +80,7 @@ class BaseMapping():
self.log.exception(
"Problem during item mapping")
continue
except:
except Exception:
return None
return translated_metadata
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment