Skip to content

Commit 5880e1c

Browse files
author
Richard Jones
committed
merge from maint-0-7
1 parent 54c4c9a commit 5880e1c

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Fixed:
5353
- apply IE caching "fix" to automatically serve up all pages expired
5454
- fix typo (sf patch 1076629)
5555
- fix hyperlinking of items (sf bug 1080251)
56+
- fix roundup-admin find command handling of Multilinks
5657

5758

5859
2004-10-26 0.7.9

roundup/admin.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1717
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1818
#
19-
# $Id: admin.py,v 1.85 2004-11-09 23:12:11 richard Exp $
19+
# $Id: admin.py,v 1.86 2004-12-08 03:18:46 richard Exp $
2020

2121
'''Administration commands for maintaining Roundup trackers.
2222
'''
@@ -644,7 +644,10 @@ def do_find(self, args):
644644
values = [value]
645645
d = props[propname] = {}
646646
for value in values:
647-
d[hyperdb.rawToHyperdb(self.db, cl, None, propname, value)] = 1
647+
value = hyperdb.rawToHyperdb(self.db, cl, None, propname, value)
648+
if isinstance(value, type([])):
649+
value = value[0]
650+
d[value] = 1
648651

649652
# now do the find
650653
try:

0 commit comments

Comments
 (0)