Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/hardware.py
diff options
context:
space:
mode:
authorDylan M. Taylor <dylan@dylanmtaylor.com>2021-04-29 08:58:30 -0400
committerGitHub <noreply@github.com>2021-04-29 08:58:30 -0400
commitd6ec206d3e9064888e4c7f9a36ded37440be70d9 (patch)
tree0f6f17467252e0527ad6661d7f5fdbca3239879e /archinstall/lib/hardware.py
parenta739326be471d1fc8738d3f229e45d7b4f93f0cf (diff)
typo: none 0 is incorrect grammar
Diffstat (limited to 'archinstall/lib/hardware.py')
-rw-r--r--archinstall/lib/hardware.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archinstall/lib/hardware.py b/archinstall/lib/hardware.py
index e9c63e41..f139dfe4 100644
--- a/archinstall/lib/hardware.py
+++ b/archinstall/lib/hardware.py
@@ -65,7 +65,7 @@ def cpuVendor()-> Optional[str]:
def isVM() -> bool:
try:
- subprocess.check_call(["systemd-detect-virt"]) # systemd-detect-virt issues a none 0 exit code if it is not on a virtual machine
+ subprocess.check_call(["systemd-detect-virt"]) # systemd-detect-virt issues a non-zero exit code if it is not on a virtual machine
return True
except:
return False