dabo Commit
Revision 4051
Date: 2008-04-21 11:39:54 -0700 (Mon, 21 Apr 2008)
Author: Paul
Trac: http://svn.dabodev.com/trac/dabo/changeset/4051

Changed:
U   trunk/dabo/db/dCursorMixin.py

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


Diff:
Modified: trunk/dabo/db/dCursorMixin.py
===================================================================
--- trunk/dabo/db/dCursorMixin.py       2008-04-21 18:20:08 UTC (rev 4050)
+++ trunk/dabo/db/dCursorMixin.py       2008-04-21 18:39:54 UTC (rev 4051)
@@ -1687,7 +1687,7 @@
                                if l_fldval is not None:
                                        l_fldval = l_fldval.lower()
                                if l_val is not None:
-                                       l_val = l_fldval.lower()
+                                       l_val = l_val.lower()
                                match = (l_fldval == l_val)
 
                        if match:




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev
Searchable Archives: http://leafe.com/archives/search/dabo-dev
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to