Changeset 3401

Show
Ignore:
Timestamp:
09/26/07 13:23:25 (1 year ago)
Author:
paul
Message:

Fixed bug in dBackend introduced in 3390 that would manifest if we don't
auto-quote names.

Files:

Legend:

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

    r3392 r3401  
    249249            exp = " %s ".join([encPart(pt) for pt in parts 
    250250                    if pt.lower() not in lowkeys]) 
    251         return exp % subs 
     251            return exp % subs 
     252        return exp 
    252253     
    253254