This commit is contained in:
Friedrich Lindenberg 2015-05-21 23:47:46 +02:00
parent 537557285d
commit 43453415c0

View File

@ -374,7 +374,7 @@ class Table(object):
return ResultIter((self.database.executable.execute(q) for q in queries)) return ResultIter((self.database.executable.execute(q) for q in queries))
def count(self, **_filter): def count(self, **_filter):
""" Return the count of results for the given filter set (same filter """ Return the count of results for the given filter set (same filter
options as with ``find()``). """ options as with ``find()``). """
return self.find(return_count=True, **_filter) return self.find(return_count=True, **_filter)