[Zope-CVS] CVS: Products/Scheduler - Scheduler.py:1.16
Chris McDonough
chrism@zope.com
Mon, 2 Jun 2003 17:03:34 -0400
Update of /cvs-repository/Products/Scheduler
In directory cvs.zope.org:/tmp/cvs-serv8304
Modified Files:
Scheduler.py
Log Message:
Fix consistency check bug.
=== Products/Scheduler/Scheduler.py 1.15 => 1.16 ===
--- Products/Scheduler/Scheduler.py:1.15 Mon Jun 2 16:38:39 2003
+++ Products/Scheduler/Scheduler.py Mon Jun 2 17:03:33 2003
@@ -315,7 +315,7 @@
l.append(s)
if l:
- return '\n'.append(l)
+ return '\n'.join(l)
return 'OK'
security.declareProtected(CHANGE_SCHEDULE_PERM, 'manage_scheduleTask')