diff options
-rwxr-xr-x | Doc/tools/dailybuild.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/tools/dailybuild.py b/Doc/tools/dailybuild.py index df401bbf53..1a471e6842 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 + '/python32', WWWROOT + '/dev', True), + (BUILDROOT + '/python33', WWWROOT + '/dev', True), (BUILDROOT + '/python27', WWWROOT, False), - (BUILDROOT + '/python31', WWWROOT + '/py3k', False), + (BUILDROOT + '/python32', WWWROOT + '/py3k', False), ] |