mirror of
https://github.com/pyrogram/pyrogram
synced 2025-08-28 21:07:59 +00:00
Make paths good looking
This commit is contained in:
parent
76ad29ae11
commit
40e7d72e87
@ -573,7 +573,7 @@ class Client:
|
|||||||
)
|
)
|
||||||
|
|
||||||
if temp_file_path:
|
if temp_file_path:
|
||||||
final_file_path = os.path.join(directory, file_name)
|
final_file_path = re.sub("\\\\", "/", os.path.join(directory, file_name))
|
||||||
os.makedirs(directory, exist_ok=True)
|
os.makedirs(directory, exist_ok=True)
|
||||||
shutil.move(temp_file_path, final_file_path)
|
shutil.move(temp_file_path, final_file_path)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user