[Python-checkins] r42211 - sandbox/trunk/pycon/Makefile sandbox/trunk/pycon/README

david.goodger python-checkins at python.org
Tue Jan 31 16:27:25 CET 2006


Author: david.goodger
Date: Tue Jan 31 16:27:24 2006
New Revision: 42211

Modified:
   sandbox/trunk/pycon/Makefile
   sandbox/trunk/pycon/README
Log:
updated for renamed parse_sched.py

Modified: sandbox/trunk/pycon/Makefile
==============================================================================
--- sandbox/trunk/pycon/Makefile	(original)
+++ sandbox/trunk/pycon/Makefile	Tue Jan 31 16:27:24 2006
@@ -1,4 +1,4 @@
 
 html:
-	./parse-sched.py --format=html <FinalSchedule  >schedule.html
+	./parse_sched.py --format=html <FinalSchedule  >schedule.html
 

Modified: sandbox/trunk/pycon/README
==============================================================================
--- sandbox/trunk/pycon/README	(original)
+++ sandbox/trunk/pycon/README	Tue Jan 31 16:27:24 2006
@@ -6,13 +6,13 @@
 get.sh		Fetches the source of the PyCon2006/FinalSchedule wiki page
  	        and saves it as FinalSchedule.
 		(Uses GNU wget)
-parse-sched.py	Reads the source of the FinalSchedule page from stdin,
+parse_sched.py	Reads the source of the FinalSchedule page from stdin,
 	        and can output the schedule as HTML or a Python
 	        data structure.
 
 Run get.sh once; then invoke the script with something like:
 
-	./parse-sched.py --format=html <FinalSchedule >schedule.html
+	./parse_sched.py --format=html <FinalSchedule >schedule.html
 
 Please feel free to submit patches that add new output formats. If you
 have commit privileges, feel free to just check in changes that add


More information about the Python-checkins mailing list