Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall/lib/output.py
diff options
context:
space:
mode:
authorAnton Hvornum <anton@hvornum.se>2021-05-18 13:39:57 +0000
committerGitHub <noreply@github.com>2021-05-18 13:39:57 +0000
commite1c58185790ccb5945e993046e7d51e0040327e7 (patch)
tree5350a481808ad376400eb9fe2baa36b9e70abe30 /archinstall/lib/output.py
parent9bf71da867554f956d370694eb32b6392e352a06 (diff)
parentda0da729c5f3ef0aaf832229901dda221de654ab (diff)
Merge pull request #472 from dylanmtaylor/proofreading
Proofreading: Fix misc. spelling and grammar issues
Diffstat (limited to 'archinstall/lib/output.py')
-rw-r--r--archinstall/lib/output.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py
index 8bc6cacb..20b0df8d 100644
--- a/archinstall/lib/output.py
+++ b/archinstall/lib/output.py
@@ -26,7 +26,7 @@ class Journald(dict):
except ModuleNotFoundError:
return False
- # For backwards compability, convert old style log-levels
+ # For backwards compatibility, convert old style log-levels
# to logging levels (and warn about deprecated usage)
# There's some code re-usage here but that should be fine.
# TODO: Remove these in a few versions:
@@ -135,7 +135,7 @@ def log(*args, **kwargs):
# Unless the level is higher than we've decided to output interactively.
# (Remember, log files still get *ALL* the output despite level restrictions)
if 'level' in kwargs:
- # For backwards compability, convert old style log-levels
+ # For backwards compatibility, convert old style log-levels
# to logging levels (and warn about deprecated usage)
# There's some code re-usage here but that should be fine.
# TODO: Remove these in a few versions: