From 91144708394b72865cbedd0d715f0435e06a8af8 Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Mon, 10 Nov 2025 19:23:58 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Avoid=20empty=20search=20location?= =?UTF-8?q?=20first=20by=20using=20.=20the=20current=20directory?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- firefox_decrypt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firefox_decrypt.py b/firefox_decrypt.py index afb7a04..c18441e 100755 --- a/firefox_decrypt.py +++ b/firefox_decrypt.py @@ -282,7 +282,7 @@ def load_libnss(): """Load libnss into python using the CDLL interface""" locations: list[str] = [ - os.environ.get("NSS_LIB_PATH", ""), + os.environ.get("NSS_LIB_PATH", "."), ] if SYSTEM == "Windows":