[svn r37886] hum, i thought i had refactored this option name already ...

also the wrong name does not even cause a test failure. odd.

--HG--
branch : trunk
This commit is contained in:
hpk 2007-02-03 21:35:14 +01:00
parent ee40787bf1
commit 95f38694cb
2 changed files with 2 additions and 2 deletions

View File

@ -702,7 +702,7 @@ The options that you need to specify in that conftest.py file are:
Sample configuration::
dist_hosts = ['localhost', 'user@someserver:/tmp/somedir']
dist_rsyncroots = ['../pypy', '../py']
dist_rsync_roots = ['../pypy', '../py']
dist_remotepython = 'python2.4'
dist_nicelevel = 10
dist_boxing = True

View File

@ -50,7 +50,7 @@ class HostRSync(py.execnet.RSync):
return False
dir, base = os.path.split(path)
try:
name = "dist_rsyncroots"
name = "dist_rsync_roots"
rsync_roots = self.config.conftest.rget_path(name, dir)
except AttributeError:
rsync_roots = None