[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:
parent
ee40787bf1
commit
95f38694cb
|
@ -702,7 +702,7 @@ The options that you need to specify in that conftest.py file are:
|
||||||
Sample configuration::
|
Sample configuration::
|
||||||
|
|
||||||
dist_hosts = ['localhost', 'user@someserver:/tmp/somedir']
|
dist_hosts = ['localhost', 'user@someserver:/tmp/somedir']
|
||||||
dist_rsyncroots = ['../pypy', '../py']
|
dist_rsync_roots = ['../pypy', '../py']
|
||||||
dist_remotepython = 'python2.4'
|
dist_remotepython = 'python2.4'
|
||||||
dist_nicelevel = 10
|
dist_nicelevel = 10
|
||||||
dist_boxing = True
|
dist_boxing = True
|
||||||
|
|
|
@ -50,7 +50,7 @@ class HostRSync(py.execnet.RSync):
|
||||||
return False
|
return False
|
||||||
dir, base = os.path.split(path)
|
dir, base = os.path.split(path)
|
||||||
try:
|
try:
|
||||||
name = "dist_rsyncroots"
|
name = "dist_rsync_roots"
|
||||||
rsync_roots = self.config.conftest.rget_path(name, dir)
|
rsync_roots = self.config.conftest.rget_path(name, dir)
|
||||||
except AttributeError:
|
except AttributeError:
|
||||||
rsync_roots = None
|
rsync_roots = None
|
||||||
|
|
Loading…
Reference in New Issue