wireproto: rephrase the error message for unknown getbundle parameters
authorPierre-Yves David <pierre-yves.david@fb.com>
Tue, 27 May 2014 14:45:31 -0700
changeset 21728 0f73ed629362
parent 21727 5f98ad8fb8d9
child 21729 a437ce9ed65a
wireproto: rephrase the error message for unknown getbundle parameters In case of an unknown parameter passed to ``getbundle``, the server prints a message and ignores the parameter. This message was misleadingly prefixed with "abort: ". The use of "abort: " here is clearly wrong as nothing is actually aborted and the ``getbundle`` call proceeds without the parameter. The message is now prefixed with "warning: " and rephrased to make it clearer that the parameter was simply ignored.
mercurial/wireproto.py
--- a/mercurial/wireproto.py	Sat Jun 07 11:32:37 2014 -0400
+++ b/mercurial/wireproto.py	Tue May 27 14:45:31 2014 -0700
@@ -507,7 +507,7 @@
             opts[k] = others[k]
             del others[k]
     if others:
-        sys.stderr.write("abort: %s got unexpected arguments %s\n"
+        sys.stderr.write("warning: %s ignored unexpected arguments %s\n"
                          % (cmd, ",".join(others)))
     return opts