Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/layman:master commit in: layman/overlays/
Date: Mon, 05 Sep 2011 16:09:52
Message-Id: 6566ed3969a81d5d54cc17d9ec15ccef31ab9000.dol-sen@gentoo
1 commit: 6566ed3969a81d5d54cc17d9ec15ccef31ab9000
2 Author: dol-sen <brian.dolbec <AT> gmail <DOT> com>
3 AuthorDate: Mon Sep 5 16:08:42 2011 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Mon Sep 5 16:08:42 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/layman.git;a=commit;h=6566ed39
7
8 fix bug 381853, remove the noise level param as error() does not have it like the other output functions.
9
10 ---
11 layman/overlays/source.py | 4 ++--
12 1 files changed, 2 insertions(+), 2 deletions(-)
13
14 diff --git a/layman/overlays/source.py b/layman/overlays/source.py
15 index 03bccc4..0f5c913 100644
16 --- a/layman/overlays/source.py
17 +++ b/layman/overlays/source.py
18 @@ -179,8 +179,8 @@ class OverlaySource(object):
19 result = 1
20 except Exception, err:
21 self.output.error(
22 - 'Unknown exception running command: %s' % command_repr, 2)
23 - self.output.error('Original error was: %s' % str(err), 2)
24 + 'Unknown exception running command: %s' % command_repr)
25 + self.output.error('Original error was: %s' % str(err))
26 result = 1
27
28 if self.config['quiet']: