[Python-checkins] r45861 - peps/trunk/pep2pyramid.py
david.goodger
python-checkins at python.org
Tue May 2 20:34:23 CEST 2006
Author: david.goodger
Date: Tue May 2 20:34:22 2006
New Revision: 45861
Modified:
peps/trunk/pep2pyramid.py
Log:
create destdir & ancestors
Modified: peps/trunk/pep2pyramid.py
==============================================================================
--- peps/trunk/pep2pyramid.py (original)
+++ peps/trunk/pep2pyramid.py Tue May 2 20:34:22 2006
@@ -409,7 +409,7 @@
needSvn = 0
if not os.path.exists(destDir):
needSvn = 1
- os.mkdir(destDir)
+ os.makedirs(destDir)
# write content.html
foofilename = os.path.join(destDir, 'content.html')
More information about the Python-checkins
mailing list