author | Brodie Rao <brodie@sf.io> |
Sat, 12 May 2012 15:56:23 +0200 | |
branch | stable |
changeset 1070 | 838e4146e763 |
parent 1069 | 4e0cef7a70cf |
child 1071 | f0ce3dcd5c87 |
tests/hghave | file | annotate | diff | comparison | revisions |
--- a/tests/hghave Sat May 12 15:54:54 2012 +0200 +++ b/tests/hghave Sat May 12 15:56:23 2012 +0200 @@ -31,14 +31,14 @@ def has_bzr(): try: import bzrlib - return bzrlib.__doc__ != None + return bzrlib.__doc__ is not None except ImportError: return False def has_bzr114(): try: import bzrlib - return (bzrlib.__doc__ != None + return (bzrlib.__doc__ is not None and bzrlib.version_info[:2] >= (1, 14)) except ImportError: return False