mirror of
https://github.com/mvt-project/mvt.git
synced 2026-05-22 16:19:47 +02:00
Fixed is_dir() to isdir()
This commit is contained in:
@@ -41,7 +41,7 @@ class AndroidExtraction(MVTModule):
|
||||
def _adb_check_keys():
|
||||
"""Make sure Android adb keys exist.
|
||||
"""
|
||||
if not os.path.is_dir(os.path.dirname(ADB_KEY_PATH)):
|
||||
if not os.path.isdir(os.path.dirname(ADB_KEY_PATH)):
|
||||
os.path.makedirs(os.path.dirname(ADB_KEY_PATH))
|
||||
|
||||
if not os.path.exists(ADB_KEY_PATH):
|
||||
|
||||
Reference in New Issue
Block a user