Skip to content

Commit

Permalink
Merge pull request #325 from quasar-team/OPCUA-3205-fix-colorama-cons…
Browse files Browse the repository at this point in the history
…ole-colours-for-windows

added call to colorama just_fix_windows_console()
  • Loading branch information
parasxos authored Oct 4, 2024
2 parents 97b6664 + a333f19 commit 7eb1ed1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion quasar.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
import sys
import inspect
import argparse
from colorama import Fore, Style
from colorama import Fore, Style, just_fix_windows_console

this_script_path = os.path.abspath(sys.argv[0])
sys.path.insert(0, os.path.join(os.path.dirname(this_script_path), 'FrameworkInternals'))
Expand All @@ -59,6 +59,7 @@ def __make_context(project_binary_dir):
return context

def main():
just_fix_windows_console()
quasar_basic_utils.initialize_logging()

parser = quasar_parser()
Expand Down

0 comments on commit 7eb1ed1

Please sign in to comment.