# HG changeset patch # User Mads Kiilerich # Date 2009-07-25 00:20:27 # Node ID 3f52a70959ce001d487c08e646528f1bc7ef7a98 # Parent df21a009c9c4e29132fd334bc11080055d26261c tests/hghave: bzr114 checks for bzr >= 1.14 Everything but the implementation indicated that bzr114 also should be true for "or higher". diff --git a/tests/hghave b/tests/hghave --- a/tests/hghave +++ b/tests/hghave @@ -39,7 +39,7 @@ def has_bzr114(): try: import bzrlib return (bzrlib.__doc__ != None - and bzrlib.version_info[:2] == (1, 14)) + and bzrlib.version_info[:2] >= (1, 14)) except ImportError: return False