[Python-checkins] r68079 - peps/trunk/genpepindex.py

benjamin.peterson python-checkins at python.org
Tue Dec 30 21:05:46 CET 2008


Author: benjamin.peterson
Date: Tue Dec 30 21:05:46 2008
New Revision: 68079

Log:
write correct filename

Modified:
   peps/trunk/genpepindex.py

Modified: peps/trunk/genpepindex.py
==============================================================================
--- peps/trunk/genpepindex.py	(original)
+++ peps/trunk/genpepindex.py	Tue Dec 30 21:05:46 2008
@@ -48,7 +48,7 @@
     else:
         raise ValueError("argument must be a directory or file path")
 
-    with codecs.open('pep-0.txt', 'w', encoding='UTF-8') as pep0_file:
+    with codecs.open('pep-0000.txt', 'w', encoding='UTF-8') as pep0_file:
         write_pep0(peps, pep0_file)
 
 if __name__ == "__main__":


More information about the Python-checkins mailing list