summaryrefslogtreecommitdiffstats
path: root/avahi-utils/avahi/ServiceTypeDatabase.py.in
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-utils/avahi/ServiceTypeDatabase.py.in')
-rw-r--r--avahi-utils/avahi/ServiceTypeDatabase.py.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/avahi-utils/avahi/ServiceTypeDatabase.py.in b/avahi-utils/avahi/ServiceTypeDatabase.py.in
index 863c85d..9caeebd 100644
--- a/avahi-utils/avahi/ServiceTypeDatabase.py.in
+++ b/avahi-utils/avahi/ServiceTypeDatabase.py.in
@@ -19,7 +19,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-import anydbm
+import gdbm
import locale
locale.setlocale(locale.LC_ALL, '')
@@ -28,7 +28,7 @@ class ServiceTypeDatabase:
def __init__(self, filename = "@pkgdatadir@/service-types.db"):
- self.db = anydbm.open(filename, "r")
+ self.db = gdbm.open(filename, "r")
l = locale.getlocale(locale.LC_MESSAGES)