You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ch...@apache.org on 2019/11/08 15:15:05 UTC

[qpid-dispatch] branch master updated: DISPATCH-1473: python2.7 does not support mutually exclusive arguments

This is an automated email from the ASF dual-hosted git repository.

chug pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/qpid-dispatch.git


The following commit(s) were added to refs/heads/master by this push:
     new faa7dd7  DISPATCH-1473: python2.7 does not support mutually exclusive arguments
faa7dd7 is described below

commit faa7dd795b8483ea0c49750b91dfe91a8e7ccb15
Author: Chuck Rolke <ch...@apache.org>
AuthorDate: Thu Nov 7 14:49:56 2019 -0500

    DISPATCH-1473: python2.7 does not support mutually exclusive arguments
---
 python/qpid_dispatch_internal/tools/command.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/qpid_dispatch_internal/tools/command.py b/python/qpid_dispatch_internal/tools/command.py
index 76aab73..55abb9f 100644
--- a/python/qpid_dispatch_internal/tools/command.py
+++ b/python/qpid_dispatch_internal/tools/command.py
@@ -35,7 +35,7 @@ from proton import SSLDomain, Url
 from proton.utils import SyncRequestResponse, BlockingConnection
 
 def version_supports_mutually_exclusive_arguments():
-    return sys.version_info >= (2,7)
+    return sys.version_info >= (2,8)
 
 class UsageError(Exception):
     """


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org