From 2dfaac6e4f6c1ab0fc930c0e1dc9ee9df713aa34 Mon Sep 17 00:00:00 2001 From: Philipp Maier Date: Fri, 27 Feb 2026 12:46:53 +0100 Subject: [PATCH] contrib/smpp-ota-tool: fix description string (copy+paste error) Change-Id: I559844bfa1ac372370ef9d148f2f8a6bf4ab4ef5 Related: SYS#6868 --- contrib/smpp-ota-tool.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/smpp-ota-tool.py b/contrib/smpp-ota-tool.py index 91b6dd27..9fac76b0 100755 --- a/contrib/smpp-ota-tool.py +++ b/contrib/smpp-ota-tool.py @@ -167,7 +167,7 @@ class SmppHandler: return h2b(resp), h2b(sw) if __name__ == '__main__': - option_parser = argparse.ArgumentParser(description='CSV importer for pySim-shell\'s PostgreSQL Card Key Provider', + option_parser = argparse.ArgumentParser(description='Tool to send OTA SMS RFM/RAM messages via SMPP', formatter_class=argparse.ArgumentDefaultsHelpFormatter) option_parser.add_argument("--host", help="Host/IP of the SMPP server", default="localhost") option_parser.add_argument("--port", help="TCP port of the SMPP server", default=2775, type=int)