diff options
Diffstat (limited to 'fb.py')
-rwxr-xr-x | fb.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -573,7 +573,7 @@ class FBClient: def dl_file(self, arg): if re.match('https?://', arg): - outfile = os.path.basename(arg) + outfile = os.path.join(self.tempdir, os.path.basename(arg)) self.curlw.dl_file(arg, outfile) return outfile |