From 6566ed3969a81d5d54cc17d9ec15ccef31ab9000 Mon Sep 17 00:00:00 2001 From: dol-sen Date: Mon, 5 Sep 2011 09:08:42 -0700 Subject: fix bug 381853, remove the noise level param as error() does not have it like the other output functions. --- layman/overlays/source.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'layman') diff --git a/layman/overlays/source.py b/layman/overlays/source.py index 03bccc4..0f5c913 100644 --- a/layman/overlays/source.py +++ b/layman/overlays/source.py @@ -179,8 +179,8 @@ class OverlaySource(object): result = 1 except Exception, err: self.output.error( - 'Unknown exception running command: %s' % command_repr, 2) - self.output.error('Original error was: %s' % str(err), 2) + 'Unknown exception running command: %s' % command_repr) + self.output.error('Original error was: %s' % str(err)) result = 1 if self.config['quiet']: -- cgit v1.2.3-65-gdbad