Skip to content

Commit

Permalink
Adjust error message EBR-78
Browse files Browse the repository at this point in the history
  • Loading branch information
liadomide committed Jul 30, 2024
1 parent bcdb5dd commit 2ee3c15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tvb_library/tvb/basic/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def _build_profile_class(cls, selected_profile, in_operation=False, run_init=Tru

else:
msg = "Invalid profile name %r, expected one of %r"
msg %= (selected_profile, cls.ALL)
msg %= (selected_profile, cls.REGISTERED_PROFILES)
raise Exception(msg)

@classmethod
Expand Down

0 comments on commit 2ee3c15

Please sign in to comment.