From 2fa5a59e3faf30c2d4bb45056f20ec2408dcb3f4 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Thu, 28 Apr 2022 17:43:26 -0700 Subject: [PATCH] Fix can replay Jungle warning (#24364) --- tools/replay/can_replay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/replay/can_replay.py b/tools/replay/can_replay.py index 4b0ad21dbf..b212abc431 100755 --- a/tools/replay/can_replay.py +++ b/tools/replay/can_replay.py @@ -86,7 +86,7 @@ def connect(): if __name__ == "__main__": - if panda_jungle_imported: + if not panda_jungle_imported: print("\33[31m", "WARNING: cannot connect to jungles. Clone the jungle library to enable support:", "\033[0m") print("\033[34m", f"cd {BASEDIR} && git clone https://github.com/commaai/panda_jungle", "\033[0m")