From 560e1fc1e20f9246e38c1889435a596926bab6a5 Mon Sep 17 00:00:00 2001 From: NT Sleep Date: Thu, 22 Sep 2022 22:54:07 +0200 Subject: [PATCH] Fixed android check in procinfo (#1156) --- pwndbg/commands/procinfo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pwndbg/commands/procinfo.py b/pwndbg/commands/procinfo.py index 389ae0819..b32463d02 100644 --- a/pwndbg/commands/procinfo.py +++ b/pwndbg/commands/procinfo.py @@ -221,7 +221,7 @@ def procinfo(): print("%-10s %s" % ("ppid", proc.ppid)) - if not pwndbg.lib.android.is_android(): + if not pwndbg.gdblib.android.is_android(): print("%-10s %s" % ("uid", proc.uid)) print("%-10s %s" % ("gid", proc.gid)) print("%-10s %s" % ("groups", proc.groups))