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 b902228 commit 6a3bbfbCopy full SHA for 6a3bbfb
tldr.py
@@ -34,7 +34,8 @@
34
USE_NETWORK = int(os.environ.get('TLDR_NETWORK_ENABLED', '1')) > 0
35
USE_CACHE = int(os.environ.get('TLDR_CACHE_ENABLED', '1')) > 0
36
MAX_CACHE_AGE = int(os.environ.get('TLDR_CACHE_MAX_AGE', 24*7))
37
-CAFILE = None if os.environ.get('TLDR_CERT', None) is None else Path(os.environ.get('TLDR_CERT')).expanduser()
+CAFILE = None if os.environ.get('TLDR_CERT', None) is None else \
38
+ Path(os.environ.get('TLDR_CERT')).expanduser()
39
40
URLOPEN_CONTEXT = None
41
if int(os.environ.get('TLDR_ALLOW_INSECURE', '0')) == 1:
0 commit comments