Gentoo Archives: gentoo-commits

From: "Anthony G. Basile" <blueness@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/grss:master commit in: grs/
Date: Sun, 18 Feb 2018 22:38:56
Message-Id: 1518993525.b9dc8458eaba1a97380f6a59795afd267739f04c.blueness@gentoo
1 commit: b9dc8458eaba1a97380f6a59795afd267739f04c
2 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
3 AuthorDate: Sun Feb 18 22:38:45 2018 +0000
4 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
5 CommitDate: Sun Feb 18 22:38:45 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=b9dc8458
7
8 grs/Kernel.py: fix typo
9
10 grs/Kernel.py | 2 +-
11 1 file changed, 1 insertion(+), 1 deletion(-)
12
13 diff --git a/grs/Kernel.py b/grs/Kernel.py
14 index 2bc3e72..6b15a46 100644
15 --- a/grs/Kernel.py
16 +++ b/grs/Kernel.py
17 @@ -132,7 +132,7 @@ class Kernel():
18 if os.path.isfile(self.busybox_config):
19 cmd += '--busybox-config=%s ' % self.busybox_config
20 if os.path.isfile(self.genkernel_config):
21 - cmd += '--config=%s ' % self.genkernel_config):
22 + cmd += '--config=%s ' % self.genkernel_config
23 if has_modules:
24 cmd += 'all'
25 else: