Fixed a bug that required the -f flag in conjunction with -e to use pty.

This commit is contained in:
Storm Dragon 2024-12-15 21:27:39 -05:00
parent b6201235e6
commit 29a2db0e0c
2 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ def main():
argumentParser.error(errorMsg) argumentParser.error(errorMsg)
sys.exit(1) sys.exit(1)
if cliArgs.foreground: if cliArgs.foreground or cliArgs.emulated_pty:
# Run directly in foreground # Run directly in foreground
run_fenrir() run_fenrir()
else: else:

View File

@ -4,5 +4,5 @@
# Fenrir TTY screen reader # Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributers. # By Chrys, Storm Dragon, and contributers.
version = "2024.12.11" version = "2024.12.15"
codeName = "testing" codeName = "testing"