Skip to content

Commit 6a3bbfb

Browse files
Update tldr.py
Co-authored-by: CleanMachine1 <[email protected]>
1 parent b902228 commit 6a3bbfb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tldr.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@
3434
USE_NETWORK = int(os.environ.get('TLDR_NETWORK_ENABLED', '1')) > 0
3535
USE_CACHE = int(os.environ.get('TLDR_CACHE_ENABLED', '1')) > 0
3636
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()
37+
CAFILE = None if os.environ.get('TLDR_CERT', None) is None else \
38+
Path(os.environ.get('TLDR_CERT')).expanduser()
3839

3940
URLOPEN_CONTEXT = None
4041
if int(os.environ.get('TLDR_ALLOW_INSECURE', '0')) == 1:

0 commit comments

Comments
 (0)