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

source_changes at macosforge.org source_changes at macosforge.org
Thu Jan 8 11:52:41 PST 2015


Revision: 14273
          http://trac.calendarserver.org//changeset/14273
Author:   wsanchez at apple.com
Date:     2015-01-08 11:52:41 -0800 (Thu, 08 Jan 2015)
Log Message:
-----------
Don't step on name variable.

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

Modified: CalendarServer/trunk/setup.py
===================================================================
--- CalendarServer/trunk/setup.py	2015-01-08 18:49:47 UTC (rev 14272)
+++ CalendarServer/trunk/setup.py	2015-01-08 19:52:41 UTC (rev 14273)
@@ -215,9 +215,9 @@
     ("calendarserver.tools.calverify", "main"),
 }
 
-for name, (module, function) in script_entry_points.iteritems():
+for tool, (module, function) in script_entry_points.iteritems():
     entry_points["console_scripts"].append(
-        "calendarserver_{} = {}:{}".format(name, module, function)
+        "calendarserver_{} = {}:{}".format(tool, module, function)
     )
 
 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/calendarserver-changes/attachments/20150108/51a4ea9a/attachment.html>


More information about the calendarserver-changes mailing list