Skip to content

Commit

Permalink
Silence a warning from asyncio
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Warrick <kwpolska@gmail.com>
  • Loading branch information
Kwpolska committed Aug 25, 2018
1 parent d604423 commit 55f0f43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nikola/plugins/command/auto/__init__.py
Expand Up @@ -256,7 +256,7 @@ def _execute(self, options, args):
if self.dns_sd:
self.dns_sd.Reset()
srv.close()
self.rebuild_queue.put((None, None))
loop.run_until_complete(self.rebuild_queue.put((None, None)))
loop.run_until_complete(srv.wait_closed())
loop.run_until_complete(webapp.shutdown())
loop.run_until_complete(handler.shutdown(5.0))
Expand Down

0 comments on commit 55f0f43

Please sign in to comment.