Skip to content
Snippets Groups Projects
Commit a5ce381a8da0 authored by timeless's avatar timeless
Browse files

hghave: make bzr checks stricter

My bzr does not have bzrlib.revisionspec.RevisionSpec,
and thus tests were failing because convert refused to believe in bzr,
but hghave without this change thought it was available.
parent 80c11c1a64bf
No related branches found
No related tags found
No related merge requests found
......@@ -110,6 +110,10 @@
def has_bzr():
try:
import bzrlib
import bzrlib.bzrdir
import bzrlib.errors
import bzrlib.revision
import bzrlib.revisionspec.RevisionSpec
return bzrlib.__doc__ is not None
except ImportError:
return False
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment