diff options
-rwxr-xr-x | AutoCompleter.py | 6 | ||||
-rwxr-xr-x | setup.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/AutoCompleter.py b/AutoCompleter.py index dea47e67..5e6d04bf 100755 --- a/AutoCompleter.py +++ b/AutoCompleter.py @@ -8,7 +8,7 @@ try: from typing import List, Dict, Tuple, Callable, Union except: pass -# from colorama import Fore +from colorama import Fore class _RangeAction(object): @@ -742,8 +742,8 @@ class ACArgumentParser(argparse.ArgumentParser): formatted_message += '\n ' + line linum += 1 - # sys.stderr.write(Fore.LIGHTRED_EX + '{}\n\n'.format(formatted_message) + Fore.RESET) - sys.stderr.write('{}\n\n'.format(formatted_message)) + sys.stderr.write(Fore.LIGHTRED_EX + '{}\n\n'.format(formatted_message) + Fore.RESET) + # sys.stderr.write('{}\n\n'.format(formatted_message)) self.print_help() sys.exit(1) @@ -61,7 +61,7 @@ Programming Language :: Python :: Implementation :: PyPy3 Topic :: Software Development :: Libraries :: Python Modules """.splitlines()))) -INSTALL_REQUIRES = ['pyparsing >= 2.1.0', 'pyperclip >= 1.5.27'] +INSTALL_REQUIRES = ['pyparsing >= 2.1.0', 'pyperclip >= 1.5.27', 'colorama'] EXTRAS_REQUIRE = { # Windows also requires pyreadline to ensure tab completion works |