Skip to content

Commit

Permalink
Fixed broken URL in help output
Browse files Browse the repository at this point in the history
  • Loading branch information
jlstevens committed Jan 11, 2017
1 parent 642a604 commit 4e85cd1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions holoviews/core/pprint.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ def target_info(cls, obj, ansi=False):
@classmethod
def object_info(cls, obj, name, ansi=False):
element = not getattr(obj, '_deep_indexable', False)
url = ('https://ioam.github.io/holoviews/Tutorials/Elements.html#{obj}'
if element else 'https://ioam.github.io/holoviews/Tutorials/Containers.html#{obj}')
url = ('http://holoviews.org/Tutorials/Elements.html#{obj}'
if element else 'http://holoviews.org/Tutorials/Containers.html#{obj}')
link = url.format(obj=name)

msg = ("\nOnline example: {link}"
Expand Down

0 comments on commit 4e85cd1

Please sign in to comment.