aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layman/dbbase.py')
-rw-r--r--layman/dbbase.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/layman/dbbase.py b/layman/dbbase.py
index b6c32bc..56ef158 100644
--- a/layman/dbbase.py
+++ b/layman/dbbase.py
@@ -167,7 +167,7 @@ class DbBase(object):
return
- def read_db(self, path):
+ def read_db(self, path, text=None):
'''
Read the overlay database for installed overlay definitions.
'''
@@ -178,7 +178,7 @@ class DbBase(object):
self.ignore,
self.ignore_init_read_errors)
- db_ctl.read_db(path)
+ db_ctl.read_db(path, text=text)
def write(self, path):