patchbomb: use cmdutil.check_at_most_one_arg()
authorMartin von Zweigbergk <martinvonz@google.com>
Tue, 17 Dec 2019 10:26:44 +0300
changeset 43896 3781da40eaa6
parent 43895 287556e71f85
child 43897 dda49ec2b54a
patchbomb: use cmdutil.check_at_most_one_arg() Differential Revision: https://phab.mercurial-scm.org/D7637
hgext/patchbomb.py
--- a/hgext/patchbomb.py	Thu Dec 12 15:48:48 2019 -0800
+++ b/hgext/patchbomb.py	Tue Dec 17 10:26:44 2019 +0300
@@ -767,8 +767,7 @@
                 b" do not re-specify --outgoing"
             )
         )
-    if rev and bookmark:
-        raise error.Abort(_(b"-r and -B are mutually exclusive"))
+    cmdutil.check_at_most_one_arg(opts, b'rev', b'bookmark')
 
     if outgoing or bundle:
         if len(revs) > 1: