diff options
author | Benjamin Peterson <benjamin@python.org> | 2014-02-03 18:33:56 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2014-02-03 18:33:56 (GMT) |
commit | 60f0793c3096ddf6115871ff3bfb3836d5295051 (patch) | |
tree | 4675908bcf491958cddde7612e0ad7d932213588 /Doc/tools | |
parent | 5146825e00eda67d8871b3c48d4bb7ac19190023 (diff) | |
download | cpython-60f0793c3096ddf6115871ff3bfb3836d5295051.zip cpython-60f0793c3096ddf6115871ff3bfb3836d5295051.tar.gz cpython-60f0793c3096ddf6115871ff3bfb3836d5295051.tar.bz2 |
use system mercurial
Diffstat (limited to 'Doc/tools')
-rwxr-xr-x | Doc/tools/dailybuild.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py index ab4265e..f843117 100755 --- a/Doc/tools/dailybuild.py +++ b/Doc/tools/dailybuild.py @@ -43,7 +43,7 @@ def build_one(checkout, target, isdev, quick): print 'Doc autobuild started in %s' % checkout os.chdir(checkout) print 'Running hg pull --update' - os.system('/usr/local/bin/hg pull --update') + os.system('hg pull --update') print 'Running make autobuild' maketarget = 'autobuild-' + ('html' if quick else ('dev' if isdev else 'stable')) |