Skip to content

Commit

Permalink
Fix fstring
Browse files Browse the repository at this point in the history
  • Loading branch information
apockill authored Jul 1, 2021
1 parent 60c605b commit 75f5123
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vcap/vcap/loading/capsule_loading.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def load_capsule_from_bytes(data: bytes,
"The capsule is not compatible with this software. The "
"capsule's OpenVisionCapsules required version is "
f"{major}.{minor}, but this software uses OpenVisionCapsules "
f"{MAJOR_COMPATIBLE_VERSION.MINOR_COMPATIBLE_VERSION}"
f"{MAJOR_COMPATIBLE_VERSION}.{MINOR_COMPATIBLE_VERSION}"
)

if minor > MINOR_COMPATIBLE_VERSION:
Expand Down

0 comments on commit 75f5123

Please sign in to comment.