diff options
author | Devan Franchini <twitch153@gentoo.org> | 2015-05-16 23:44:03 -0400 |
---|---|---|
committer | Devan Franchini <twitch153@gentoo.org> | 2015-06-19 15:52:03 -0400 |
commit | eb983fc49914c942d476c62f73e025b1e95c8748 (patch) | |
tree | d706581adda261e65f756d82ad6923d3fb436709 | |
parent | config.py: Readds the "dir" key to the option_to_config term (diff) | |
download | webapp-config-eb983fc49914c942d476c62f73e025b1e95c8748.tar.gz webapp-config-eb983fc49914c942d476c62f73e025b1e95c8748.tar.bz2 webapp-config-eb983fc49914c942d476c62f73e025b1e95c8748.zip |
db.py: Reverts OUT.info() call to print() in listinstalls()
-rw-r--r-- | WebappConfig/db.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebappConfig/db.py b/WebappConfig/db.py index 06d9e04..0fbd34a 100644 --- a/WebappConfig/db.py +++ b/WebappConfig/db.py @@ -403,7 +403,7 @@ class WebappDB(AppHierarchy): OUT.info(' ' + i[3].strip(), 1) else: # This is a simplified form for the webapp.eclass - OUT.info(i[3].strip(), 1) + print(i[3].strip()) # ======================================================================== # Handler for /usr/share/webapps |