diff options
-rwxr-xr-x | pym/kernelcheck/kernelcheck.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/kernelcheck/kernelcheck.py b/pym/kernelcheck/kernelcheck.py index bacbdbc..ce9d112 100755 --- a/pym/kernelcheck/kernelcheck.py +++ b/pym/kernelcheck/kernelcheck.py @@ -78,7 +78,7 @@ def main(argv): print(darkgreen('\nThese are the specifications of your kernel:')) arch = portage.settings['ARCH'] - if arch: + if not arch: kernel.arch = '?' else: kernel.arch = arch |