diff options
author | Brian Dolbec <brian.dolbec@gmail.com> | 2011-01-16 22:50:08 -0800 |
---|---|---|
committer | Brian Dolbec <brian.dolbec@gmail.com> | 2011-01-16 22:50:08 -0800 |
commit | c0c11c31adf99810cf31d36e27064238955580c8 (patch) | |
tree | 8006806c0e97c93d4c18b53214d20d6dc38e6c4c | |
parent | fix long lines and a typo, minor code improvements (diff) | |
download | overlord-c0c11c31adf99810cf31d36e27064238955580c8.tar.gz overlord-c0c11c31adf99810cf31d36e27064238955580c8.tar.bz2 overlord-c0c11c31adf99810cf31d36e27064238955580c8.zip |
add a linefeed to the hint message for better output separation
-rw-r--r-- | layman/db.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/layman/db.py b/layman/db.py index f827292..01dc454 100644 --- a/layman/db.py +++ b/layman/db.py @@ -58,7 +58,7 @@ class DB(DbBase): DbBase.__init__(self, [config['local_list'], ], config, - ignore, + ignore, quiet) self.output.debug('DB handler initiated', 6) @@ -282,7 +282,7 @@ class RemoteDB(DbBase): self.output.warn('You do not have permission to update the cache (%s).' % mpath) import getpass if getpass.getuser() != 'root': - self.output.warn('Hint: You are not root.') + self.output.warn('Hint: You are not root.\n') continue try: |