Skip to content

Commit 9843848

Browse files
author
Richard Jones
committed
Priority list changes - removed the redundant TODO and added support.
See roundup-devel for details.
1 parent a8e9d39 commit 9843848

File tree

1 file changed

+11
-4
lines changed

1 file changed

+11
-4
lines changed

roundupdb.py

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: roundupdb.py,v 1.4 2001-07-19 06:27:07 anthonybaxter Exp $
1+
# $Id: roundupdb.py,v 1.5 2001-07-20 00:22:50 richard Exp $
22

33
import re, os, smtplib, socket
44

@@ -331,9 +331,9 @@ def initDB(storagelocator, password):
331331
pri = db.getclass('priority')
332332
pri.create(name="fatal-bug", order="1")
333333
pri.create(name="bug", order="2")
334-
pri.create(name="todo", order="3")
335-
pri.create(name="usability", order="4")
336-
pri.create(name="feature", order="5")
334+
pri.create(name="usability", order="3")
335+
pri.create(name="feature", order="4")
336+
pri.create(name="support", order="5")
337337

338338
stat = db.getclass('status')
339339
stat.create(name="unread", order="1")
@@ -374,6 +374,13 @@ def initDB(storagelocator, password):
374374

375375
#
376376
# $Log: not supported by cvs2svn $
377+
# Revision 1.4 2001/07/19 06:27:07 anthonybaxter
378+
# fixing (manually) the (dollarsign)Log(dollarsign) entries caused by
379+
# my using the magic (dollarsign)Id(dollarsign) and (dollarsign)Log(dollarsign)
380+
# strings in a commit message. I'm a twonk.
381+
#
382+
# Also broke the help string in two.
383+
#
377384
# Revision 1.3 2001/07/19 05:52:22 anthonybaxter
378385
# Added CVS keywords Id and Log to all python files.
379386
#

0 commit comments

Comments
 (0)