From fe551846ee45290e0341d7cb469d54eeb1aa9046 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Fri, 14 Oct 2005 15:22:30 +0000 Subject: [PATCH] Disable the 'chmod' commands since these don't work since the move to dinsdale. --- pep2html.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pep2html.py b/pep2html.py index 1d88bb856..94f7a73ad 100755 --- a/pep2html.py +++ b/pep2html.py @@ -403,9 +403,9 @@ def push_pep(htmlfiles, txtfiles, username, verbose, local=0): rc = os.system("%s %s %s %s" % (copy_cmd, quiet, filelist, target)) if rc: sys.exit(rc) - rc = os.system("%s 664 %s/*" % (chmod_cmd, HDIR)) - if rc: - sys.exit(rc) +## rc = os.system("%s 664 %s/*" % (chmod_cmd, HDIR)) +## if rc: +## sys.exit(rc) PEP_TYPE_DISPATCH = {'text/plain': fixfile,