[CalendarServer-changes] [13586] PyCalendar/trunk/src/zonal/tzconvert.py

source_changes at macosforge.org source_changes at macosforge.org
Sat May 31 18:06:08 PDT 2014


Revision: 13586
          http://trac.calendarserver.org//changeset/13586
Author:   cdaboo at apple.com
Date:     2014-05-31 18:06:08 -0700 (Sat, 31 May 2014)
Log Message:
-----------
Proper fix.

Modified Paths:
--------------
    PyCalendar/trunk/src/zonal/tzconvert.py

Modified: PyCalendar/trunk/src/zonal/tzconvert.py
===================================================================
--- PyCalendar/trunk/src/zonal/tzconvert.py	2014-05-31 02:16:51 UTC (rev 13585)
+++ PyCalendar/trunk/src/zonal/tzconvert.py	2014-06-01 01:06:08 UTC (rev 13586)
@@ -88,7 +88,7 @@
         last_line = None
         for nextline in f:
             nextline = nextline[:-1]
-            if nextline.startswith("\t"): # or nextline.startswith(" "):
+            if nextline.startswith("\t") or nextline.startswith(" "):
                 os.write("\n")
                 os.write(nextline)
             elif nextline.startswith("#") or len(nextline) == 0:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20140531/d09e6cdf/attachment.html>


More information about the calendarserver-changes mailing list