fixed in trunk.
On Nov 17, 7:11 pm, ron_m <[email protected]> wrote: > def endswith(self, value): > if self.type in ('string', 'text'): > return Query(self, ' LIKE ', '%%%s' % value) > else: > raise RuntimeError, "startswith used with incompatible > field type" > > The last line should be > > raise RuntimeError, "endswith used with incompatible field > type"

