Skip to content

Commit

Permalink
Fix #3754: HTML builder crashes if HTML theme appends own stylesheets
Browse files Browse the repository at this point in the history
  • Loading branch information
tk0miya committed May 17, 2017
1 parent be6d205 commit 62614af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Features added
Bugs fixed
----------

* #3754: HTML builder crashes if HTML theme appends own stylesheets

Testing
--------

Expand Down
1 change: 1 addition & 0 deletions sphinx/builders/html.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ def __iadd__(self, other):
RemovedInSphinx20Warning)
for item in other:
self.append(item)
return self

def __add__(self, other):
ret = CSSContainer(self)
Expand Down

0 comments on commit 62614af

Please sign in to comment.