mirror of
https://github.com/SheffieldML/GPy.git
synced 2026-05-24 14:15:14 +02:00
Fixed exception handling bug in GPy/util/linalg.py:29
This commit is contained in:
parent
ca41173225
commit
f5329bb9b6
1 changed files with 1 additions and 1 deletions
|
|
@ -26,7 +26,7 @@ try:
|
|||
assert hasattr(_blaslib, 'dsyr_')
|
||||
except AssertionError:
|
||||
_blas_available = False
|
||||
except AttributeError e:
|
||||
except AttributeError as e:
|
||||
_blas_available = False
|
||||
warnings.warn("warning: caught this exception:" + str(e))
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue