From 0f9a06a06a1c2f452cf757e99bd7ea2816b2e42e Mon Sep 17 00:00:00 2001 From: enedil Date: Sun, 7 Mar 2021 17:12:36 +0100 Subject: [PATCH] `os.pth.isfile` -> `os.path.isfile` :/ --- binrida/FridaHandler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binrida/FridaHandler.py b/binrida/FridaHandler.py index 0e7248e..a7022c7 100644 --- a/binrida/FridaHandler.py +++ b/binrida/FridaHandler.py @@ -39,7 +39,7 @@ def __init__(self,data,bnFile,spawn,action): self.path = bn.user_plugin_path()+'/BinRida/binrida/' if not os.path.isfile(self.path+'m_stalker.js'): self.path = bn.bundled_plugin_path()+'/BinRida/binrida/' - if not os.pth.isfile(self.path+'m_stalker.js'): + if not os.path.isfile(self.path+'m_stalker.js'): bn.log.log_error('Javascript code not found!') raise FileNotFoundError(errno.ENOENT, os.strerror(errno.ENOENT), self.path+'m_stalker.js') ## Rebasing address