We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 80a49ad commit f777562Copy full SHA for f777562
CHANGES.txt
@@ -9,6 +9,7 @@ Features
9
Bugfixes
10
--------
11
12
+* Avoid Broken Pipe error in nikola auto (Issue #1906)
13
* Don't auto-rebuild on changes to ".foo" or "foo~" or changes in folders.
14
* auto should also rebuild in response to move events
15
* Don’t get metadata from file if compiler-specific metadata exist (Issue #1904)
nikola/plugins/command/auto/__init__.py
@@ -422,7 +422,7 @@ def on_any_event(self, event):
422
def finish_response(self):
423
try:
424
f(self)
425
- except EX: # On Python3 this is a BrokenPipeException
+ except EX: # Client closed the connection, not a real error
426
pass
427
428
WebSocketWSGIHandler.finish_response = finish_response
0 commit comments