[CalendarServer-changes] [13456] CalendarServer/trunk/setup.py

source_changes at macosforge.org source_changes at macosforge.org
Wed May 7 14:00:57 PDT 2014


Revision: 13456
          http://trac.calendarserver.org//changeset/13456
Author:   wsanchez at apple.com
Date:     2014-05-07 14:00:57 -0700 (Wed, 07 May 2014)
Log Message:
-----------
Don't step on name symbol.

Modified Paths:
--------------
    CalendarServer/trunk/setup.py

Modified: CalendarServer/trunk/setup.py
===================================================================
--- CalendarServer/trunk/setup.py	2014-05-07 19:06:11 UTC (rev 13455)
+++ CalendarServer/trunk/setup.py	2014-05-07 21:00:57 UTC (rev 13456)
@@ -204,9 +204,9 @@
     ("calendarserver.tools.calverify", "main"),
 }
 
-for name, (m, f) in script_entry_points.iteritems():
+for n, (m, f) in script_entry_points.iteritems():
     entry_points["console_scripts"].append(
-        "calendarserver_{} = {}:{}".format(name, m, f)
+        "calendarserver_{} = {}:{}".format(n, m, f)
     )
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20140507/1ba19256/attachment.html>


More information about the calendarserver-changes mailing list