[py-svn] r38076 - py/trunk/py/execnet

guido at codespeak.net guido at codespeak.net
Wed Feb 7 16:34:03 CET 2007


Author: guido
Date: Wed Feb  7 16:34:01 2007
New Revision: 38076

Modified:
   py/trunk/py/execnet/rsync.py
Log:
Typo.


Modified: py/trunk/py/execnet/rsync.py
==============================================================================
--- py/trunk/py/execnet/rsync.py	(original)
+++ py/trunk/py/execnet/rsync.py	Wed Feb  7 16:34:01 2007
@@ -96,7 +96,7 @@
         """ 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 @@
         channel.send((str(destdir), self._options))
         self._channels[channel] = finishedcallback
 
-
     def _broadcast(self, msg):
         for channel in self._channels:
             channel.send(msg)



More information about the pytest-commit mailing list