[Python-checkins] r52904 - tracker/instances/python-dev/schema.py

erik.forsberg python-checkins at python.org
Sun Dec 3 10:17:50 CET 2006


Author: erik.forsberg
Date: Sun Dec  3 10:17:50 2006
New Revision: 52904

Modified:
   tracker/instances/python-dev/schema.py
Log:
Fixed cut'n paste error - do setkey('name') on priority, not twice on
severity.. :-)


Modified: tracker/instances/python-dev/schema.py
==============================================================================
--- tracker/instances/python-dev/schema.py	(original)
+++ tracker/instances/python-dev/schema.py	Sun Dec  3 10:17:50 2006
@@ -49,7 +49,7 @@
                  name=String(),
                  description=String(),
                  order=Number())
-severity.setkey('name')
+priority.setkey('name')
 
 # Status
 status = Class(db, "status",


More information about the Python-checkins mailing list