From 395d97160c86e8c958dcbf65d47e9de626d2af8b Mon Sep 17 00:00:00 2001 From: fijal Date: Thu, 8 Feb 2007 16:35:11 +0100 Subject: [PATCH] [svn r38165] Update this as well --HG-- branch : trunk --- py/bin/_update_website.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/bin/_update_website.py b/py/bin/_update_website.py index 3f4bf1aca..2efd768fb 100755 --- a/py/bin/_update_website.py +++ b/py/bin/_update_website.py @@ -18,9 +18,9 @@ def rsync(pkgpath, apidocspath, gateway, remotepath): pkgpath.copy(tempdir.ensure(pkgpath.basename, dir=True)) apidocspath.copy(tempdir.ensure(apidocspath.basename, dir=True)) - rs = py.execnet.RSync(delete=True) + rs = py.execnet.RSync(tempdir, delete=True) rs.add_target(gateway, remotepath) - rs.send(tempdir) + rs.send() def run_tests(pkgpath, args=''): """ run the unit tests and build the docs """