mirror of
https://github.com/sphinx-doc/sphinx.git
synced 2025-02-25 18:55:22 -06:00
Fixed bad call to os.path
This commit is contained in:
parent
099a58e0b7
commit
0e26a6d46c
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user