aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDevan Franchini <twitch153@gentoo.org>2015-07-13 14:48:41 -0400
committerDevan Franchini <twitch153@gentoo.org>2015-07-13 14:48:41 -0400
commit0bd7450c52401be9b0c9c9ad8fb2e9eff5760e1b (patch)
tree09c8716855471b22cdc3218c2e98191349bad73f /layman/db_modules/xml_db/__init__.py
parentjson_db.py: Adds JSON databasing support to layman (diff)
downloadlayman-0bd7450c52401be9b0c9c9ad8fb2e9eff5760e1b.tar.gz
layman-0bd7450c52401be9b0c9c9ad8fb2e9eff5760e1b.tar.bz2
layman-0bd7450c52401be9b0c9c9ad8fb2e9eff5760e1b.zip
xml_db/__init__.py: Modifies function descriptions
Diffstat (limited to 'layman/db_modules/xml_db/__init__.py')
-rw-r--r--layman/db_modules/xml_db/__init__.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/layman/db_modules/xml_db/__init__.py b/layman/db_modules/xml_db/__init__.py
index ad6506c..3a3abd1 100644
--- a/layman/db_modules/xml_db/__init__.py
+++ b/layman/db_modules/xml_db/__init__.py
@@ -15,9 +15,9 @@ module_spec = {
'description': __doc__,
'functions': ['add_new', 'read_db', 'write'],
'func_desc': {
- 'add_new': 'Adds new overlay(s) to database',
- 'read_db': 'Reads the list of registered overlays from config',
- 'write' : 'Writes the list of registered overlay to config',
+ 'add_new': 'Adds overlay(s) from provided database text',
+ 'read_db': 'Reads the list of overlays from database file',
+ 'write' : 'Writes the list of overlays to database file',
},
}
}