[Python-checkins] cpython (2.7): use system mercurial

benjamin.peterson python-checkins at python.org
Mon Feb 3 19:34:02 CET 2014


http://hg.python.org/cpython/rev/f086503dcf54
changeset:   88927:f086503dcf54
branch:      2.7
parent:      88921:ae7facd874ba
user:        Benjamin Peterson <benjamin at python.org>
date:        Mon Feb 03 13:33:56 2014 -0500
summary:
  use system mercurial

files:
  Doc/tools/dailybuild.py |  2 +-
  1 files changed, 1 insertions(+), 1 deletions(-)


diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py
--- a/Doc/tools/dailybuild.py
+++ b/Doc/tools/dailybuild.py
@@ -43,7 +43,7 @@
     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'))

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list