Skip to content

Commit

Permalink
fix compatibility with Sphinx 7.2 (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
njzjz committed Aug 22, 2023
1 parent 9b9314d commit d57520d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deepmodeling_sphinx/inject.py
Expand Up @@ -132,7 +132,7 @@ def minify_js_files(app, exception):
# not html builder
return
for js in app.builder.script_files:
fn = os.path.join(app.builder.outdir, js)
fn = os.path.join(app.builder.outdir, js.filename)
if os.path.isfile(fn):
with open(fn, "r+") as f:
minified_js = jsmin(f.read())
Expand All @@ -146,7 +146,7 @@ def minify_css_files(app, exception):
# not html builder
return
for css in app.builder.css_files:
fn = os.path.join(app.builder.outdir, css)
fn = os.path.join(app.builder.outdir, css.filename)
if os.path.isfile(fn):
with open(fn, "r+") as f:
minified_css = cssmin(f.read())
Expand Down

0 comments on commit d57520d

Please sign in to comment.