From 4f8aaf644095fef61ba1104af0f07efe2a099079 Mon Sep 17 00:00:00 2001 From: Martin Panter Date: Sun, 12 Jun 2016 04:24:06 +0000 Subject: Issue #16484: Fix pydoc link and test on Windows, by Kaushik Nadikuditi --- Lib/test/test_pydoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Lib/test/test_pydoc.py') diff --git a/Lib/test/test_pydoc.py b/Lib/test/test_pydoc.py index 59aa7151ee..aee979b8e8 100644 --- a/Lib/test/test_pydoc.py +++ b/Lib/test/test_pydoc.py @@ -356,7 +356,7 @@ def get_pydoc_html(module): def get_pydoc_link(module): "Returns a documentation web link of a module" dirname = os.path.dirname - basedir = os.path.join(dirname(dirname(__file__))) + basedir = dirname(dirname(__file__)) doc = pydoc.TextDoc() loc = doc.getdocloc(module, basedir=basedir) return loc -- cgit v1.2.1