Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jarrodmillman committed Aug 29, 2007
1 parent 62cd408 commit ad645a8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scipy/stats/models/family/family.py
Expand Up @@ -18,11 +18,12 @@ class Family(object):
valid = [-N.inf, N.inf]

tol = 1.0e-05
links = []

def _setlink(self, link):
self._link = link
if hasattr(self, "links"):
if link not in links:
if link not in self.links:
raise ValueError, 'invalid link for family, should be in %s' % `self.links`

def _getlink(self):
Expand Down

0 comments on commit ad645a8

Please sign in to comment.