# HG changeset patch # User Patrick Mezard # Date 1202855735 -3600 # Node ID 81a8667331e8898b325dd0cc3122ef55ac1de63f # Parent 875b745996e81fce571785cb151a1188fce6fb16 convert: detect baz before tla The former seems to handle repositories built by the latter, the opposite is not true. diff -r 875b745996e8 -r 81a8667331e8 hgext/convert/gnuarch.py --- a/hgext/convert/gnuarch.py Tue Feb 12 21:44:56 2008 +0100 +++ b/hgext/convert/gnuarch.py Tue Feb 12 23:35:35 2008 +0100 @@ -27,11 +27,11 @@ # Could use checktool, but we want to check for baz or tla. self.execmd = None - if util.find_exe('tla'): - self.execmd = 'tla' + if util.find_exe('baz'): + self.execmd = 'baz' else: - if util.find_exe('baz'): - self.execmd = 'baz' + if util.find_exe('tla'): + self.execmd = 'tla' else: raise util.Abort(_('cannot find a GNU Arch tool'))