summaryrefslogtreecommitdiffstats
path: root/fb.py
diff options
context:
space:
mode:
Diffstat (limited to 'fb.py')
-rwxr-xr-xfb.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/fb.py b/fb.py
index f1c39e2..acfc3e6 100755
--- a/fb.py
+++ b/fb.py
@@ -662,9 +662,9 @@ class FBClient:
tempfile = os.path.join(self.tempdir, os.path.basename(self.args.name))
if sys.stdin.isatty():
print("^C to exit, ^D to send")
- f = open(tempfile, "w")
+ f = open(tempfile, "wb")
try:
- f.write(sys.stdin.read())
+ f.write(sys.stdin.buffer.read())
except KeyboardInterrupt:
sys.exit(130)
finally: