summaryrefslogtreecommitdiff
path: root/portato/db/sql.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 02:24:50 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 02:24:50 +0100
commitf254bd593f3c1842658f4fb57fa87ed77d9fe993 (patch)
treee7c4d02452a940442184b6932b757e98fa61605f /portato/db/sql.py
parent1cb4b2447dd451bd23602f91e08a53538514c13f (diff)
downloadportato-f254bd593f3c1842658f4fb57fa87ed77d9fe993.tar.gz
portato-f254bd593f3c1842658f4fb57fa87ed77d9fe993.tar.bz2
portato-f254bd593f3c1842658f4fb57fa87ed77d9fe993.zip
Previous commits done more correct :P
Diffstat (limited to 'portato/db/sql.py')
-rw-r--r--portato/db/sql.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/portato/db/sql.py b/portato/db/sql.py
index 48de9eb..02ce172 100644
--- a/portato/db/sql.py
+++ b/portato/db/sql.py
@@ -85,7 +85,7 @@ class SQLDatabase (Database):
pkg_conn.close()
def search_types(self):
- return Database.SEARCH_NAME
+ return self.SEARCH_NAME
def updated (self):
changed = False
@@ -259,13 +259,13 @@ class SQLDatabase (Database):
restrict = restrict.replace(".*","%").replace(".","_")
rest = ""
- if self._type & Database.NAME_DESCRIPTION:
+ if self._type & self.SEARCH_NAME:
if "/" in restrict:
rest = "(name LIKE '%s%%' AND cat LIKE '%s')" % (pkg, cat)
else:
rest = "(name LIKE '%%%(restrict)s%%' OR cat LIKE '%(restrict)s%%')" % {"restrict":restrict}
- if self._type & Database.SEARCH_DESCRIPTION:
+ if self._type & self.SEARCH_DESCRIPTION:
r = "descr LIKE '%%%(restrict)s%%'" % {"restrict":restrict}
if not rest:
rest = "(%s OR %s)" % (r, rest)