Skip to content

Commit

Permalink
Fixed extension warning
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 13, 2018
1 parent 4034d42 commit bb0eff8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/util/__init__.py
Expand Up @@ -312,8 +312,8 @@ def __call__(self, *args, **params):
try:
__import__(backend)
except:
self.warning("%s is not available, ensure %s is installed "
"to activate %s extension." % (backend, backend))
self.warning("%s could not be imported, ensure %s is installed."
% (backend, backend))
try:
__import__('holoviews.plotting.%s' % imp)
if selected_backend is None:
Expand Down

0 comments on commit bb0eff8

Please sign in to comment.