Skip to content
Open
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
2025-xx-xx - v3.2.1.dev0:
* WARNING: This is a development snapshot, not a stable release.
* Fix error handling during type autodetection in create mode.

2025-11-02 - v3.2.0:
* Drop support for Python 3.6.
Expand Down
3 changes: 2 additions & 1 deletion lib/cfv/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -2215,7 +2215,8 @@ def main(argv=None):
testa = a[:-3]
cftype = cftypes.auto_filename_match(a, testa)
if not cftype:
raise CFVValueError('specify a filetype with -t, or use standard extension')
view.perror('cfv: specify a filetype with -t, or use standard extension')
sys.exit(1)
make(cftype, a, args)

if mode == 0:
Expand Down
Loading