index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-10-18 11:58:29 +0200 |
---|---|---|
committer | Anton Hvornum <anton.feeds+github@gmail.com> | 2020-10-18 11:58:29 +0200 |
commit | 90eff266576a5fc2fe9f690e835c876aa405fe6d (patch) | |
tree | cbbcf2693f6470dc8fdc89ffbfa854935e526ac2 /archinstall/lib/output.py | |
parent | 60aaae4337c90bea3d485f58f7ab206cb1539a74 (diff) |
-rw-r--r-- | archinstall/lib/output.py | 6 |
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 |