Skip to content

Commit 9114470

Browse files
committed
✨ Avoid empty search location first by using . the current directory
1 parent 83053c4 commit 9114470

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firefox_decrypt.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ def load_libnss():
282282
"""Load libnss into python using the CDLL interface"""
283283

284284
locations: list[str] = [
285-
os.environ.get("NSS_LIB_PATH", ""),
285+
os.environ.get("NSS_LIB_PATH", "."),
286286
]
287287

288288
if SYSTEM == "Windows":

0 commit comments

Comments
 (0)