Browse Source

Fix File not using the filename if given

pull/449/merge
FrostLuma 8 years ago
committed by Rapptz
parent
commit
e52532c06e
  1. 2
      discord/file.py

2
discord/file.py

@ -61,6 +61,8 @@ class File:
_, self.filename = os.path.split(fp)
else:
self.filename = getattr(fp, 'name', None)
else:
self.filename = filename
def open_file(self):
fp = self.fp

Loading…
Cancel
Save