From 4e85cd1fb2b1ba636adbd785efa26b5c527e6790 Mon Sep 17 00:00:00 2001 From: jlstevens Date: Wed, 11 Jan 2017 14:43:51 +0000 Subject: [PATCH] Fixed broken URL in help output --- holoviews/core/pprint.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/holoviews/core/pprint.py b/holoviews/core/pprint.py index 28a4d04018..bdf07083c1 100644 --- a/holoviews/core/pprint.py +++ b/holoviews/core/pprint.py @@ -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}"