Skip to content

Commit 88a4306

Browse files
committed
commits fix for issue 3450. _repr_cov_params now uses self.chol_cov
1 parent 8a177f2 commit 88a4306

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/distributions/multivariate.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ def _repr_cov_params(self, dist=None):
143143
if dist is None:
144144
dist = self
145145
if self._cov_type == 'chol':
146-
chol = get_variable_name(self.chol)
146+
chol = get_variable_name(self.chol_cov)
147147
return r'\mathit{{chol}}={}'.format(chol)
148148
elif self._cov_type == 'cov':
149149
cov = get_variable_name(self.cov)

0 commit comments

Comments
 (0)