[Python-checkins] r43179 - peps/trunk/pep2pyramid.py
martin.v.loewis
python-checkins at python.org
Tue Mar 21 01:57:14 CET 2006
Author: martin.v.loewis
Date: Tue Mar 21 01:57:13 2006
New Revision: 43179
Modified:
peps/trunk/pep2pyramid.py
Log:
Remove svn integration.
Generate to the current directory.
Modified: peps/trunk/pep2pyramid.py
==============================================================================
--- peps/trunk/pep2pyramid.py (original)
+++ peps/trunk/pep2pyramid.py Tue Mar 21 01:57:13 2006
@@ -34,7 +34,7 @@
The optional arguments ``peps`` are either pep numbers or .txt files.
"""
-destDirBase = '/home/jafo/cvs/beta.python.org/build/data/doc/peps/'
+destDirBase = '.'
import sys
import os
@@ -418,11 +418,11 @@
shutil.copyfile(outpath, os.path.join(destDir, '..', 'body.html'))
# add to SVN if necessary
- if needSvn:
- ret = os.system('svn add "%s"' % destDir)
- if ret != 0 and ret != None:
- print 'SVN returned "%s", expecting 0 or None' % repr(ret)
- sys.exit(1)
+ #if needSvn:
+ # ret = os.system('svn add "%s"' % destDir)
+ # if ret != 0 and ret != None:
+ # print 'SVN returned "%s", expecting 0 or None' % repr(ret)
+ # sys.exit(1)
return outpath
More information about the Python-checkins
mailing list