# HG changeset patch # User Goffi # Date 1627591861 -7200 # Node ID b46e9791168fc71dc94c704ef789f4974ab114af # Parent 1709f0a78f50343357c898ab9f755704a9053ffa jp (pubsub/delete): make notification the default, `--notify` option is replaced by `--no-notification` diff -r 1709f0a78f50 -r b46e9791168f sat_frontends/jp/cmd_pubsub.py --- a/sat_frontends/jp/cmd_pubsub.py Thu Jul 29 22:51:01 2021 +0200 +++ b/sat_frontends/jp/cmd_pubsub.py Thu Jul 29 22:51:01 2021 +0200 @@ -883,7 +883,8 @@ "-f", "--force", action="store_true", help=_("delete without confirmation") ) self.parser.add_argument( - "-N", "--notify", action="store_true", help=_("notify deletion") + "--no-notification", dest="notify", action="store_false", + help=_("do not send notification (not recommended)") ) async def start(self):