Add meta variable for the inside parameter of the mon command

This commit is contained in:
Mark Veidemanis 2018-10-14 17:17:59 +01:00
parent 7d7ef69d98
commit c6e9604d6f
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ class Mon:
group2.add_argument("-p", "--append", action="store_true", dest="doAppend", help="Append entries to lists instead of replacing")
group2.add_argument("-r", "--remove", action="store_true", dest="doRemove", help="Remove entries in lists instead of replacing")
self.parser.add_argument("--inside", dest="inside", help="Use x in y logic for matching instead of comparing exact values")
self.parser.add_argument("--inside", metavar="inside", dest="inside", help="Use x in y logic for matching instead of comparing exact values")
self.parser.add_argument("--type", nargs="*", metavar="type", dest="specType", help="Specify type of spec matching. Available types: join, part, quit, msg, topic, mode, nick, kick, notice, action, who")
self.parser.add_argument("--free", nargs="*", metavar="query", dest="free", help="Use freeform matching")