summaryrefslogtreecommitdiffstats
path: root/Lib/multiprocessing/resource_sharer.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/multiprocessing/resource_sharer.py')
-rw-r--r--Lib/multiprocessing/resource_sharer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/multiprocessing/resource_sharer.py b/Lib/multiprocessing/resource_sharer.py
index e44a728..6d99da1 100644
--- a/Lib/multiprocessing/resource_sharer.py
+++ b/Lib/multiprocessing/resource_sharer.py
@@ -125,7 +125,7 @@ class _ResourceSharer(object):
def _start(self):
from .connection import Listener
- assert self._listener is None
+ assert self._listener is None, "Already have Listener"
util.debug('starting listener and thread for sending handles')
self._listener = Listener(authkey=process.current_process().authkey)
self._address = self._listener.address