From 3ba2545bc8f589c4bed240ea1bbf71898dd60681 Mon Sep 17 00:00:00 2001 From: nicobo Date: Wed, 20 May 2020 07:16:04 +0200 Subject: [PATCH] ~ --username short option is now -U --- nicobot/transbot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nicobot/transbot.py b/nicobot/transbot.py index 8566b2f..a3e28cc 100755 --- a/nicobot/transbot.py +++ b/nicobot/transbot.py @@ -542,7 +542,7 @@ if __name__ == '__main__': # Chatter-generic arguments parser.add_argument("--backend", "-b", dest="backend", choices=["signal","console"], default=config.backend, help="Chat backend to use") parser.add_argument("--input-file", "-i", dest="input_file", default=config.input_file, help="File to read messages from (one per line)") - parser.add_argument('--username', '-u', dest='username', help="Sender's number (e.g. +12345678901 for the 'signal' backend)") + parser.add_argument('--username', '-U', dest='username', help="Sender's number (e.g. +12345678901 for the 'signal' backend)") parser.add_argument('--group', '-g', dest='group', help="Group's ID in base64 (e.g. 'mPC9JNVoKDGz0YeZMsbL1Q==' for the 'signal' backend)") parser.add_argument('--recipient', '-r', dest='recipient', help="Recipient's number (e.g. +12345678901)") parser.add_argument('--stealth', dest='stealth', action="store_true", default=config.stealth, help="Activate stealth mode on any chosen chatter")