Gentoo Archives: gentoo-portage-dev

From: Aaron Bauman <bman@g.o>
To: gentoo-portage-dev@l.g.o
Cc: Aaron Bauman <bman@g.o>
Subject: [gentoo-portage-dev] [PATCH 50/68] lib/portage/_sets/shell.py: fix whitespace
Date: Mon, 03 Aug 2020 22:46:16
Message-Id: 20200803224327.1593726-50-bman@gentoo.org
In Reply to: [gentoo-portage-dev] [PATCH 01/68] lib/portage/util/_dyn_libs/PreservedLibsRegistry.py: fix whitespace by Aaron Bauman
1 Signed-off-by: Aaron Bauman <bman@g.o>
2 ---
3 lib/portage/_sets/shell.py | 4 ++--
4 1 file changed, 2 insertions(+), 2 deletions(-)
5
6 diff --git a/lib/portage/_sets/shell.py b/lib/portage/_sets/shell.py
7 index 2c95845c8..8bea9fd63 100644
8 --- a/lib/portage/_sets/shell.py
9 +++ b/lib/portage/_sets/shell.py
10 @@ -1,4 +1,4 @@
11 -# Copyright 2007 Gentoo Foundation
12 +# Copyright 2007-2020 Gentoo Authors
13 # Distributed under the terms of the GNU General Public License v2
14
15 import subprocess
16 @@ -30,7 +30,7 @@ class CommandOutputSet(PackageSet):
17 super(CommandOutputSet, self).__init__()
18 self._command = command
19 self.description = "Package set generated from output of '%s'" % self._command
20 -
21 +
22 def load(self):
23 pipe = subprocess.Popen(self._command, stdout=subprocess.PIPE, shell=True)
24 stdout, stderr = pipe.communicate()
25 --
26 2.28.0