mirror of
https://github.com/Rapptz/discord.py.git
synced 2025-07-23 11:26:51 +00:00
Writing to files is 'wb' not 'rb'.
This commit is contained in:
parent
af58e45e14
commit
fc0b90582d
@ -99,7 +99,7 @@ class Attachment:
|
|||||||
|
|
||||||
data = yield from self._http.get_attachment(self.url)
|
data = yield from self._http.get_attachment(self.url)
|
||||||
if isinstance(fp, str):
|
if isinstance(fp, str):
|
||||||
with open(fp, 'rb') as f:
|
with open(fp, 'wb') as f:
|
||||||
return f.write(data)
|
return f.write(data)
|
||||||
else:
|
else:
|
||||||
return fp.write(data)
|
return fp.write(data)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user