[CalendarServer-changes] [4727] CalendarServer/trunk/bin

source_changes at macosforge.org source_changes at macosforge.org
Mon Nov 9 15:46:06 PST 2009


Revision: 4727
          http://trac.macosforge.org/projects/calendarserver/changeset/4727
Author:   wsanchez at apple.com
Date:     2009-11-09 15:46:05 -0800 (Mon, 09 Nov 2009)
Log Message:
-----------
Trailing newline is annoying, eh

Modified Paths:
--------------
    CalendarServer/trunk/bin/calendarserver_export
    CalendarServer/trunk/bin/calendarserver_manage_principals
    CalendarServer/trunk/bin/calendarserver_warmup
    CalendarServer/trunk/bin/icalendar_split

Modified: CalendarServer/trunk/bin/calendarserver_export
===================================================================
--- CalendarServer/trunk/bin/calendarserver_export	2009-11-09 23:44:11 UTC (rev 4726)
+++ CalendarServer/trunk/bin/calendarserver_export	2009-11-09 23:46:05 UTC (rev 4727)
@@ -32,6 +32,8 @@
         child = Popen((run, "-p"), stdout=PIPE)
         path, stderr = child.communicate()
 
+        path = path.rstrip("\n")
+
         if child.wait() == 0:
             sys.path[0:0] = path.split(":")
 

Modified: CalendarServer/trunk/bin/calendarserver_manage_principals
===================================================================
--- CalendarServer/trunk/bin/calendarserver_manage_principals	2009-11-09 23:44:11 UTC (rev 4726)
+++ CalendarServer/trunk/bin/calendarserver_manage_principals	2009-11-09 23:46:05 UTC (rev 4727)
@@ -34,6 +34,8 @@
         child = Popen((run, "-p"), stdout=PIPE)
         path, stderr = child.communicate()
 
+        path = path.rstrip("\n")
+
         if child.wait() == 0:
             sys.path[0:0] = path.split(":")
 

Modified: CalendarServer/trunk/bin/calendarserver_warmup
===================================================================
--- CalendarServer/trunk/bin/calendarserver_warmup	2009-11-09 23:44:11 UTC (rev 4726)
+++ CalendarServer/trunk/bin/calendarserver_warmup	2009-11-09 23:46:05 UTC (rev 4727)
@@ -32,6 +32,8 @@
         child = Popen((run, "-p"), stdout=PIPE)
         path, stderr = child.communicate()
 
+        path = path.rstrip("\n")
+
         if child.wait() == 0:
             sys.path[0:0] = path.split(":")
 

Modified: CalendarServer/trunk/bin/icalendar_split
===================================================================
--- CalendarServer/trunk/bin/icalendar_split	2009-11-09 23:44:11 UTC (rev 4726)
+++ CalendarServer/trunk/bin/icalendar_split	2009-11-09 23:46:05 UTC (rev 4727)
@@ -32,6 +32,8 @@
         child = Popen((run, "-p"), stdout=PIPE)
         path, stderr = child.communicate()
 
+        path = path.rstrip("\n")
+
         if child.wait() == 0:
             sys.path[0:0] = path.split(":")
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20091109/e21dd70e/attachment.html>


More information about the calendarserver-changes mailing list