Skip to content

Commit d06a287

Browse files
author
Richard Jones
committed
sigh++
1 parent 0790b4e commit d06a287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

roundup/backends/back_anydbm.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
# BASIS, AND THERE IS NO OBLIGATION WHATSOEVER TO PROVIDE MAINTENANCE,
1616
# SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
1717
#
18-
#$Id: back_anydbm.py,v 1.115 2003-03-26 05:28:32 richard Exp $
18+
#$Id: back_anydbm.py,v 1.116 2003-03-26 05:30:23 richard Exp $
1919
'''
2020
This module defines a backend that saves the hyperdatabase in a database
2121
chosen by anydbm. It is guaranteed to always be available in python
@@ -1640,7 +1640,7 @@ def filter(self, search_matches, filterspec, sort=(None,None),
16401640
l.append((LINK, k, u))
16411641
elif isinstance(propclass, Multilink):
16421642
# the value -1 is a special "not set" sentinel
1643-
if v in ('-1', ['-1]):
1643+
if v in ('-1', ['-1']):
16441644
v = []
16451645
elif type(v) is not type([]):
16461646
v = [v]

0 commit comments

Comments
 (0)