[Python-checkins] r53431 - tracker/instances/python-dev/detectors/busybody.py tracker/instances/python-dev/detectors/config.ini

paul.dubois python-checkins at python.org
Sun Jan 14 17:21:13 CET 2007


Author: paul.dubois
Date: Sun Jan 14 17:21:12 2007
New Revision: 53431

Modified:
   tracker/instances/python-dev/detectors/busybody.py
   tracker/instances/python-dev/detectors/config.ini
Log:
Made busybody also take a comma-delimited list, and added comments to config.ini.

Modified: tracker/instances/python-dev/detectors/busybody.py
==============================================================================
--- tracker/instances/python-dev/detectors/busybody.py	(original)
+++ tracker/instances/python-dev/detectors/busybody.py	Sun Jan 14 17:21:12 2007
@@ -26,7 +26,7 @@
     ''' busybody mail
     '''
     try:
-        sendto = db.config.detectors['BUSYBODY_EMAIL'].split()
+        sendto = db.config.detectors['BUSYBODY_EMAIL'].split(",")
     except KeyError:
         return
 

Modified: tracker/instances/python-dev/detectors/config.ini
==============================================================================
--- tracker/instances/python-dev/detectors/config.ini	(original)
+++ tracker/instances/python-dev/detectors/config.ini	Sun Jan 14 17:21:12 2007
@@ -1,3 +1,6 @@
+# This configuration file controls the behavior of busybody.py and tellteam.py
+# The two definitions can be comma-delimited lists of email addresses.
+# Be sure these addresses will accept mail from the tracker's email address.
 [main]
 triage_email = pfdubois at gmail.com
 busybody_email=pfdubois at gmail.com


More information about the Python-checkins mailing list