Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-04-29 23:00:49 +0000
committerGitHub <noreply@github.com>2021-04-29 23:00:49 +0000
commit7c57fff8b22ca3e19b7122f14db28df4a53fed3f (patch)
tree03f2a676af0bbf9a8822f540783febfc9f322000
parent3e518be7ced880bb9104f2704e0dc7f5e8af6629 (diff)
parentd6ec206d3e9064888e4c7f9a36ded37440be70d9 (diff)
Merge pull request #394 from dylanmtaylor/patch-2
typo: none 0 is incorrect grammar
-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