summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordol-sen <brian.dolbec@gmail.com>2011-09-05 09:08:42 -0700
committerdol-sen <brian.dolbec@gmail.com>2011-09-05 09:08:42 -0700
commit6566ed3969a81d5d54cc17d9ec15ccef31ab9000 (patch)
treeb8e0ab757340ae7981b1796b206df269d36eab46
parentde32dea6179e96cb5b7fa1088134a41f4e78fa9b (diff)
downloadlayman-6566ed3969a81d5d54cc17d9ec15ccef31ab9000.tar.gz
layman-6566ed3969a81d5d54cc17d9ec15ccef31ab9000.tar.bz2
layman-6566ed3969a81d5d54cc17d9ec15ccef31ab9000.zip
fix bug 381853, remove the noise level param as error() does not have it like the other output functions.
-rw-r--r--layman/overlays/source.py4
1 files changed, 2 insertions, 2 deletions
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']: