Update fabric.py to work with standalone.get_cli_input()

For compatibility with Visual Studio Community Edition
This commit is contained in:
George Mallard 2024-02-10 07:08:55 -06:00 committed by GitHub
parent 8fad5a12a0
commit 7ce6d7102f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: