Skip to content

Commit

Permalink
use libsass correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
zzzeek committed Nov 7, 2021
1 parent a6092c1 commit 3207143
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zzzeeksphinx/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "1.3.0"
__version__ = "1.3.1"


def setup(app):
Expand Down
2 changes: 1 addition & 1 deletion zzzeeksphinx/scss.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def generate_stylesheet(app, exception):
for static_path, name in to_gen:

css = sass.compile(
open(os.path.join(static_path, "%s.scss" % name)).read()
string=open(os.path.join(static_path, "%s.scss" % name)).read()
)

dest = os.path.join(app.builder.outdir, "_static", "%s.css" % name)
Expand Down

0 comments on commit 3207143

Please sign in to comment.