Browse Source

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

For compatibility with Visual Studio Community Edition
pull/70/head
George Mallard 1 year ago committed by GitHub
parent
commit
7ce6d7102f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      client/fabric/fabric.py

2
client/fabric/fabric.py

@ -79,7 +79,7 @@ def main():
if args.text is not None: if args.text is not None:
text = args.text text = args.text
else: else:
text = sys.stdin.read() text = standalone.get_cli_input()
if args.stream: if args.stream:
standalone.streamMessage(text) standalone.streamMessage(text)
else: else:

Loading…
Cancel
Save