From 7ce6d7102f144cee3dbfa5a9c7d351ed281844ac Mon Sep 17 00:00:00 2001 From: George Mallard Date: Sat, 10 Feb 2024 07:08:55 -0600 Subject: [PATCH] Update fabric.py to work with standalone.get_cli_input() For compatibility with Visual Studio Community Edition --- client/fabric/fabric.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/fabric/fabric.py b/client/fabric/fabric.py index f528ade..315ef78 100755 --- a/client/fabric/fabric.py +++ b/client/fabric/fabric.py @@ -79,7 +79,7 @@ def main(): if args.text is not None: text = args.text else: - text = sys.stdin.read() + text = standalone.get_cli_input() if args.stream: standalone.streamMessage(text) else: