From 81a68223d48d44df17da798ef7ea70cca716ac62 Mon Sep 17 00:00:00 2001 From: David Wilson Date: Fri, 14 Dec 2018 05:31:37 +0000 Subject: [PATCH] issue #456: exception text typo. --- mitogen/core.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mitogen/core.py b/mitogen/core.py index 85626791..0c738eb1 100644 --- a/mitogen/core.py +++ b/mitogen/core.py @@ -2012,8 +2012,8 @@ class Waker(BasicStream): dead_msg = ( "An attempt was made to enqueue a message with a Broker that has " - "already begun shut down. If you are receiving this message, it is " - "likely your program indirectly called Broker.shutdown() too early." + "already begun shutting down. If you are receiving this message, it " + "is likely your program indirectly called Broker.shutdown() too early." ) def defer(self, func, *args, **kwargs):