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.feeds+github@gmail.com>2020-10-18 11:58:53 +0200
committerAnton Hvornum <anton.feeds+github@gmail.com>2020-10-18 11:58:53 +0200
commit973abec8549c5fb5a85f889b2c8f80f50b8e2a7b (patch)
tree0035d4283bff45b7f59718a8160fa8bac307ae08 /archinstall/lib/output.py
parenta60a3ca812619ace82993272233b9783cf4bc4fe (diff)
parent90eff266576a5fc2fe9f690e835c876aa405fe6d (diff)
Merge remote-tracking branch 'origin' into profile
Diffstat (limited to 'archinstall/lib/output.py')
-rw-r--r--archinstall/lib/output.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/archinstall/lib/output.py b/archinstall/lib/output.py
index a2711f54..d1b418d9 100644
--- a/archinstall/lib/output.py
+++ b/archinstall/lib/output.py
@@ -1,5 +1,4 @@
import sys
-from .tts import TTS
# Found first reference here: https://stackoverflow.com/questions/7445658/how-to-detect-if-the-console-does-support-ansi-escape-codes-in-python
# And re-used this: https://github.com/django/django/blob/master/django/core/management/color.py#L12
@@ -44,7 +43,4 @@ def log(*args, **kwargs):
kwargs = {'bg' : 'black', 'fg': 'white', **kwargs}
string = stylize_output(string, **kwargs)
- print(string)
- with TTS() as tts_instance:
- if tts_instance.is_available:
- tts_instance.speak(string.replace('-', '').strip().lstrip())
+ print(string) \ No newline at end of file