[Python-checkins] r42224 - sandbox/trunk/pycon/parse_sched.py

andrew.kuchling python-checkins at python.org
Thu Feb 2 02:01:06 CET 2006


Author: andrew.kuchling
Date: Thu Feb  2 02:01:05 2006
New Revision: 42224

Modified:
   sandbox/trunk/pycon/parse_sched.py
Log:
Make timezone name match the VTIMEZONE name

Modified: sandbox/trunk/pycon/parse_sched.py
==============================================================================
--- sandbox/trunk/pycon/parse_sched.py	(original)
+++ sandbox/trunk/pycon/parse_sched.py	Thu Feb  2 02:01:05 2006
@@ -224,7 +224,7 @@
     date = list(day) + [ int(x) for x in texttime.split(':') ]
     date = datetime.datetime(*date).strftime("%Y%m%dT%H%M00")
     print >>output, 'BEGIN:VEVENT'
-    print >>output, 'DTSTART;TZID=US-Central:%s' % date
+    print >>output, 'DTSTART;TZID=US/Central:%s' % date
     if location != '---':
         print >>output, 'LOCATION:%s' % location
     print >>output, 'SUMMARY:%s' % talk_title


More information about the Python-checkins mailing list