Fixed bad call to os.path

This commit is contained in:
jacob 2010-05-30 22:20:59 -05:00
parent 099a58e0b7
commit 0e26a6d46c

View File

@ -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):