From 64cd6b6a9c8fe315f0210e0d3d015753f3353d4c Mon Sep 17 00:00:00 2001 From: mohy_ka Date: Thu, 4 Apr 2024 16:08:45 +0200 Subject: [PATCH] chore: remove "Panda" from IncompatibleVersionException --- src/exception.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/exception.cpp b/src/exception.cpp index b19a5a0d..c025f52a 100644 --- a/src/exception.cpp +++ b/src/exception.cpp @@ -21,7 +21,7 @@ IncompatibleVersionException::IncompatibleVersionException(uint16_t server_versi : Exception("libfranka: Incompatible library version (server version: "s + std::to_string(server_version) + ", library version: "s + std::to_string(library_version) + - "). Please check https://frankaemika.github.io for Panda system updates " + "). Please check https://frankaemika.github.io for system updates " "or choose a libfranka version that uses the server version " + std::to_string(server_version) + " from the table at https://frankaemika.github.io/docs/compatibility.html ."s),