diff --git a/py/execnet/rsync.py b/py/execnet/rsync.py index b4feb0c5f..8e8b00e20 100644 --- a/py/execnet/rsync.py +++ b/py/execnet/rsync.py @@ -139,6 +139,7 @@ class RSync(object): basename = path[len(self.sourcedir) + 1:] if not linkpoint.startswith(os.sep): # relative link, just send it + # XXX: do sth with ../ links self._send_link(basename, linkpoint) elif linkpoint.startswith(self.sourcedir): self._send_link(basename, linkpoint[len(self.sourcedir) + 1:])