diff options
author | Anthony G. Basile <blueness@gentoo.org> | 2018-02-18 17:38:45 -0500 |
---|---|---|
committer | Anthony G. Basile <blueness@gentoo.org> | 2018-02-18 17:38:45 -0500 |
commit | b9dc8458eaba1a97380f6a59795afd267739f04c (patch) | |
tree | 8108e25fe2676cddbc7639accfdbd1d301772f3a | |
parent | grs/Kernel.py: use scripts/genkernel.conf if provided (diff) | |
download | grss-b9dc8458eaba1a97380f6a59795afd267739f04c.tar.gz grss-b9dc8458eaba1a97380f6a59795afd267739f04c.tar.bz2 grss-b9dc8458eaba1a97380f6a59795afd267739f04c.zip |
grs/Kernel.py: fix typo
-rw-r--r-- | grs/Kernel.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/grs/Kernel.py b/grs/Kernel.py index 2bc3e72..6b15a46 100644 --- a/grs/Kernel.py +++ b/grs/Kernel.py @@ -132,7 +132,7 @@ class Kernel(): if os.path.isfile(self.busybox_config): cmd += '--busybox-config=%s ' % self.busybox_config if os.path.isfile(self.genkernel_config): - cmd += '--config=%s ' % self.genkernel_config): + cmd += '--config=%s ' % self.genkernel_config if has_modules: cmd += 'all' else: |