From 1302cb914cf2545560635e41672ba4347310fa58 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Tue, 20 Jun 2023 13:30:48 -0500 Subject: [PATCH] correct wording of what get_config_pb2 is doing --- gp2040ce_bintools/__init__.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gp2040ce_bintools/__init__.py b/gp2040ce_bintools/__init__.py index 78204ba..143abe4 100644 --- a/gp2040ce_bintools/__init__.py +++ b/gp2040ce_bintools/__init__.py @@ -26,8 +26,7 @@ def get_config_pb2(): except ModuleNotFoundError: if args.proto_files_path: # compile the proto files in realtime, leave them in this package - package_path = pathlib.Path(__file__).parent - logger.info("Generating Protobuf Python files into %s...", package_path) + logger.info("Invoking gRPC tool to compile config.proto...") return grpc.protos('config.proto') raise