Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/specify_cli/presets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@ def record_written(written: Dict[str, List[str]]) -> None:
)
record_written(written)
registered = True
except Exception:
except (ImportError, FileNotFoundError, OSError, ValueError, TypeError):
# Extension registration failed; fall back to
# generic path-based registration below.
pass
Comment on lines +1730 to 1733
Expand Down
Loading