From 0e26a6d46c1a61378b57d042968500032ba41a48 Mon Sep 17 00:00:00 2001 From: jacob Date: Sun, 30 May 2010 22:20:59 -0500 Subject: [PATCH] Fixed bad call to os.path --- sphinx/websupport/api.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/websupport/api.py b/sphinx/websupport/api.py index da6fc9e1f..3cf112a30 100644 --- a/sphinx/websupport/api.py +++ b/sphinx/websupport/api.py @@ -20,8 +20,8 @@ class WebSupport(object): def init(self, srcdir, outdir='', comment_html=''): self.srcdir = srcdir - self.outdir = outdir or os.path.join(self.srcdir, '_build', - 'websupport') + self.outdir = outdir or path.join(self.srcdir, '_build', + 'websupport') self.comment_template = Template(comment_html) def build(self, **kwargs):