Skip to content

Commit 5039e3c

Browse files
authored
Merge pull request #1239 from pymc-devs/transformed_name_fix
Fixed minor print statement issue with transformed names
2 parents 59dbdf9 + 1a05a7e commit 5039e3c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ def Var(self, name, dist, data=None):
290290
' and added transformed {orig_name} to model.'.format(
291291
transform=dist.transform.name,
292292
name=name,
293-
orig_name='{}_{}'.format(name, dist.transform.name)))
293+
orig_name='{}_{}_'.format(name, dist.transform.name)))
294294
self.deterministics.append(var)
295295
return var
296296
elif isinstance(data, dict):

0 commit comments

Comments
 (0)