summaryrefslogtreecommitdiff
path: root/portato
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 02:11:13 +0100
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-03-05 02:11:13 +0100
commit1cb4b2447dd451bd23602f91e08a53538514c13f (patch)
tree94f3cab1b27f08d8ae27c6a0f65d6964ff67e9d2 /portato
parent047d78aedc5af44912ac92baea208337410a4e9e (diff)
downloadportato-1cb4b2447dd451bd23602f91e08a53538514c13f.tar.gz
portato-1cb4b2447dd451bd23602f91e08a53538514c13f.tar.bz2
portato-1cb4b2447dd451bd23602f91e08a53538514c13f.zip
Fix commit 7449bc5fb8f
Diffstat (limited to 'portato')
-rw-r--r--portato/db/database.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/portato/db/database.py b/portato/db/database.py
index 3b03a5b..8e10a40 100644
--- a/portato/db/database.py
+++ b/portato/db/database.py
@@ -45,9 +45,9 @@ class Database (object):
SEARCH_DESCRIPTION = 2
TYPES = {
- SEARCH_NAME = _("Name"),
- SEARCH_DESCRIPTION = _("Description"),
- SEARCH_NAME | SEARCH_DESCRIPTION = _("Name + Description")
+ SEARCH_NAME : _("Name"),
+ SEARCH_DESCRIPTION : _("Description"),
+ SEARCH_NAME | SEARCH_DESCRIPTION : _("Name + Description")
}