Skip to content
Merged
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
2 changes: 1 addition & 1 deletion yakut/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.14.0
0.14.1
2 changes: 1 addition & 1 deletion yakut/subject_specifier_processor.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ async def process_subject_specifier(
sp_sbj_id, sp_dty = specifier.split(":")
_logger.info("Subject specifier interpreted as explicit: %r", (sp_sbj_id, sp_dty))
subject_id = _parse_subject_id(sp_sbj_id)
if not subject_id:
if subject_id is None:
raise BadSpecifierError(f"{subject_id} is not a valid subject-ID")
return subject_id, dtype_loader.load_dtype(sp_dty)

Expand Down