Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
better comment, updated changelog
  • Loading branch information
ralsina committed Jul 24, 2015
1 parent 80a49ad commit f777562
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGES.txt
Expand Up @@ -9,6 +9,7 @@ Features
Bugfixes
--------

* Avoid Broken Pipe error in nikola auto (Issue #1906)
* Don't auto-rebuild on changes to ".foo" or "foo~" or changes in folders.
* auto should also rebuild in response to move events
* Don’t get metadata from file if compiler-specific metadata exist (Issue #1904)
Expand Down
2 changes: 1 addition & 1 deletion nikola/plugins/command/auto/__init__.py
Expand Up @@ -422,7 +422,7 @@ def on_any_event(self, event):
def finish_response(self):
try:
f(self)
except EX: # On Python3 this is a BrokenPipeException
except EX: # Client closed the connection, not a real error
pass

WebSocketWSGIHandler.finish_response = finish_response

0 comments on commit f777562

Please sign in to comment.