From 0f17891cd47f8f508deda632f5c84bdbfd916ad6 Mon Sep 17 00:00:00 2001 From: Jeroen Oudshoorn Date: Fri, 13 Oct 2023 00:14:06 +0200 Subject: [PATCH] v2.4.7 Signed-off-by: Jeroen Oudshoorn --- pwnagotchi/google/cmd.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pwnagotchi/google/cmd.py b/pwnagotchi/google/cmd.py index 3bef854a..7e6986db 100644 --- a/pwnagotchi/google/cmd.py +++ b/pwnagotchi/google/cmd.py @@ -33,9 +33,9 @@ def handle_cmd(args): """ Parses the arguments and does the thing the user wants """ - if args.plugincmd == 'auth': + if args.googlecmd == 'auth': return auth() - elif args.plugincmd == 'refresh': + elif args.googlecmd == 'refresh': return refresh() raise NotImplementedError()