Skip to content

Commit 168d01e

Browse files
committed
fix: wrong locale path
1 parent a8e6f23 commit 168d01e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

async_rutube_downloader/utils/locale.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ def get_resource_path(relative_path: str) -> str:
2121
development and PyInstaller bundle"""
2222
# PyInstaller creates a temp folder and stores path in _MEIPASS
2323
base_path = getattr(sys, "_MEIPASS", Path.cwd())
24-
return str(base_path / relative_path)
24+
return str(Path(base_path) / relative_path)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "async_rutube_downloader"
3-
version = "1.4.0"
3+
version = "1.4.1"
44
description = "download video from RuTube"
55
authors = [{ name = "Miron Sadykov", email = "MironSadykov@yandex.ru" }]
66
readme = "docs/README.md"

0 commit comments

Comments
 (0)