[Python-checkins] python/nondist/peps pep2html.py,1.55,1.56

gvanrossum@users.sourceforge.net gvanrossum at users.sourceforge.net
Fri Oct 14 17:22:34 CEST 2005


Update of /cvsroot/python/python/nondist/peps
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv27645

Modified Files:
	pep2html.py 
Log Message:
Disable the 'chmod' commands since these don't work since the move to dinsdale.


Index: pep2html.py
===================================================================
RCS file: /cvsroot/python/python/nondist/peps/pep2html.py,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -d -r1.55 -r1.56
--- pep2html.py	13 Oct 2005 21:04:15 -0000	1.55
+++ pep2html.py	14 Oct 2005 15:22:30 -0000	1.56
@@ -403,9 +403,9 @@
     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,



More information about the Python-checkins mailing list