[Python-checkins] r53426 - tracker/instances/python-dev/detectors/statusauditor.py

erik.forsberg python-checkins at python.org
Sun Jan 14 12:10:12 CET 2007


Author: erik.forsberg
Date: Sun Jan 14 12:10:11 2007
New Revision: 53426

Modified:
   tracker/instances/python-dev/detectors/statusauditor.py
Log:
There is no 'new' status in the current version of the tracker, so
the init_status auditor fails every time a new issue is created.

Replacing 'new' with 'open'.


Modified: tracker/instances/python-dev/detectors/statusauditor.py
==============================================================================
--- tracker/instances/python-dev/detectors/statusauditor.py	(original)
+++ tracker/instances/python-dev/detectors/statusauditor.py	Sun Jan 14 12:10:11 2007
@@ -4,7 +4,7 @@
     if newvalues.has_key('status') and newvalues['status']:
         return
 
-    new_id = db.status.lookup('new')
+    new_id = db.status.lookup('open')
     newvalues['status'] = new_id
 
 


More information about the Python-checkins mailing list