From 5c7fb384bc58e8e668740bac08e0d2d7c02ffca0 Mon Sep 17 00:00:00 2001 From: guido Date: Wed, 7 Feb 2007 16:34:01 +0100 Subject: [PATCH] [svn r38076] Typo. --HG-- branch : trunk --- py/execnet/rsync.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/py/execnet/rsync.py b/py/execnet/rsync.py index 665f5e5fb..c33fad7a6 100644 --- a/py/execnet/rsync.py +++ b/py/execnet/rsync.py @@ -96,7 +96,7 @@ class RSync(object): """ Sends a sourcedir to all added targets. """ if not self._channels: - raise IOError("no targets available, maybing you " + raise IOError("no targets available, maybe you " "are trying call send() twice?") self._sourcedir = str(sourcedir) # normalize a trailing '/' away @@ -143,7 +143,6 @@ class RSync(object): channel.send((str(destdir), self._options)) self._channels[channel] = finishedcallback - def _broadcast(self, msg): for channel in self._channels: channel.send(msg)