From 9aa7f5013aa2e0dc2af6383f842100c3bfa9918c Mon Sep 17 00:00:00 2001 From: richard Date: Fri, 20 Jul 2001 00:22:50 +0000 Subject: [PATCH] Priority list changes - removed the redundant TODO and added support. See roundup-devel for details. git-svn-id: http://svn.roundup-tracker.org/svnroot/roundup/trunk@17 57a73879-2fb5-44c3-a270-3262357dd7e2 --- roundupdb.py | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/roundupdb.py b/roundupdb.py index d002587..72ee084 100644 --- a/roundupdb.py +++ b/roundupdb.py @@ -1,4 +1,4 @@ -# $Id: roundupdb.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $ +# $Id: roundupdb.py,v 1.5 2001-07-20 00:22:50 richard Exp $ import re, os, smtplib, socket @@ -331,9 +331,9 @@ def initDB(storagelocator, password): pri = db.getclass('priority') pri.create(name="fatal-bug", order="1") pri.create(name="bug", order="2") - pri.create(name="todo", order="3") - pri.create(name="usability", order="4") - pri.create(name="feature", order="5") + pri.create(name="usability", order="3") + pri.create(name="feature", order="4") + pri.create(name="support", order="5") stat = db.getclass('status') stat.create(name="unread", order="1") @@ -374,6 +374,13 @@ def initDB(storagelocator, password): # # $Log: not supported by cvs2svn $ +# Revision 1.4 2001/07/19 06:27:07 anthonybaxter +# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by +# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign) +# strings in a commit message. I'm a twonk. +# +# Also broke the help string in two. +# # Revision 1.3 2001/07/19 05:52:22 anthonybaxter # Added CVS keywords Id and Log to all python files. # -- 2.30.2