index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton@hvornum.se> | 2021-04-04 18:32:59 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 18:32:59 +0000 |
commit | f8fc542fd7cb35b68d8ab4760cf53f6d45654834 (patch) | |
tree | 821c37cc4ca53214868a6e36f2e978608d1a7867 /archinstall/lib/output.py | |
parent | 5a321d6ce540d89b1464743738e43d4ac3205832 (diff) | |
parent | b02c9991911887620d4c4e84b65ac6d0c9a97b16 (diff) |
-rw-r--r-- | archinstall/lib/output.py | 4 |
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py index 537fb695..dfc6959d 100644 --- a/archinstall/lib/output.py +++ b/archinstall/lib/output.py @@ -6,7 +6,7 @@ from pathlib import Path from .storage import storage # TODO: use logging's built in levels instead. -# Altough logging is threaded and I wish to avoid that. +# Although logging is threaded and I wish to avoid that. # It's more Pythonistic or w/e you want to call it. class LOG_LEVELS: Critical = 0b001 @@ -130,4 +130,4 @@ def log(*args, **kwargs): # We use sys.stdout.write()+flush() instead of print() to try and # fix issue #94 sys.stdout.write(f"{string}\n") - sys.stdout.flush()
\ No newline at end of file + sys.stdout.flush() |