summaryrefslogtreecommitdiffstats
path: root/Doc/tools
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2012-10-28 09:12:47 (GMT)
committerGeorg Brandl <georg@python.org>2012-10-28 09:12:47 (GMT)
commit0685e14645ec410439978238ff199806282f7fb4 (patch)
tree1191014bed91a6693cd49359caa8ddeb25f14e81 /Doc/tools
parentb70290a7d4b0c254b231116ab7957f6d9a64416b (diff)
downloadcpython-0685e14645ec410439978238ff199806282f7fb4.zip
cpython-0685e14645ec410439978238ff199806282f7fb4.tar.gz
cpython-0685e14645ec410439978238ff199806282f7fb4.tar.bz2
Update current version of the "dailybuild" script.
Diffstat (limited to 'Doc/tools')
-rwxr-xr-xDoc/tools/dailybuild.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py
index 70f708f..ab4265e 100755
--- a/Doc/tools/dailybuild.py
+++ b/Doc/tools/dailybuild.py
@@ -33,9 +33,9 @@ WWWROOT = '/data/ftp.python.org/pub/docs.python.org'
BRANCHES = [
# checkout, target, isdev
- (BUILDROOT + '/python33', WWWROOT + '/py3k', False),
- (BUILDROOT + '/python34', WWWROOT + '/dev', True),
- (BUILDROOT + '/python27', WWWROOT, False),
+ (BUILDROOT + '/python33', WWWROOT + '/3.3', False),
+ (BUILDROOT + '/python34', WWWROOT + '/3.4', True),
+ (BUILDROOT + '/python27', WWWROOT + '/2.7', False),
]