We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b0b969e commit 460724dCopy full SHA for 460724d
src/downloader/main.py
@@ -20,6 +20,7 @@
20
import traceback
21
import sys
22
import os
23
+import locale
24
from pathlib import Path
25
from typing import Optional
26
@@ -34,6 +35,7 @@ def main(env: Environment, start_time: float) -> int:
34
35
# This function should be called in __main__.py which just bootstraps the application.
36
# It should receive an 'env' dictionary produced by calling the "read_env" function below.
37
38
+ locale.setlocale(locale.LC_CTYPE, "")
39
logger = TopLogger.for_main()
40
# noinspection PyBroadException
41
try:
0 commit comments