Skip to content
Snippets Groups Projects

Fix typo in error message

Merged Colm Talbot requested to merge joint-prior-typo-fix into master
1 file
+ 1
1
Compare changes
  • Side-by-side
  • Inline
+ 1
1
@@ -659,7 +659,7 @@ class JointPrior(Prior):
raise TypeError("Must supply a JointPriorDist object instance to be shared by all joint params")
if name not in dist.names:
raise ValueError("'{}' is not a parameter in the JointPriorDist")
raise ValueError("'{}' is not a parameter in the JointPriorDist".format(name))
self.dist = dist
super(JointPrior, self).__init__(name=name, latex_label=latex_label, unit=unit, minimum=dist.bounds[name][0],
Loading