Changeset 4051

Show
Ignore:
Timestamp:
04/21/08 11:39:54 (3 months ago)
Author:
paul
Message:

I broke case-insensitive seeking in revision 3971, due to this typo I've
now fixed.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/db/dCursorMixin.py

    r4049 r4051  
    16881688                    l_fldval = l_fldval.lower() 
    16891689                if l_val is not None: 
    1690                     l_val = l_fldval.lower() 
     1690                    l_val = l_val.lower() 
    16911691                match = (l_fldval == l_val) 
    16921692