Skip to content

Commit

Permalink
Fix for exception message for mismatched manager versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
andy-slac committed Dec 15, 2023
1 parent d41daf1 commit 10d2cb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/lsst/daf/butler/registry/versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def checkManagersConfig(self, managers: Mapping[str, type[VersionedExtension]])
raise MissingManagerError("Cannot find stored configuration for managers: " + ", ".join(missing))
if mismatch:
raise ManagerMismatchError(
"Configured managers do not match registry-stored names:\n" + "\n".join(missing)
"Configured managers do not match registry-stored names:\n" + "\n".join(mismatch)
)

def managerVersions(self) -> Mapping[str, VersionTuple]:
Expand Down

0 comments on commit 10d2cb2

Please sign in to comment.