comparison mercurial/commands.py @ 29892:b64eaf947632

debugextensions: show ships-with-hg-core state as a separate field This is less magical than rephrasing ships-with-hg-core as internal, and we can distinguish "internal" liar. "tested with: internal" will be hidden by the next patch.
author Yuya Nishihara <yuya@tcha.org>
date Wed, 31 Aug 2016 23:22:07 +0900
parents 31a6d5e14508
children 4c28ddda5d48
comparison
equal deleted inserted replaced
29891:ca6940515485 29892:b64eaf947632
2418 fm.plain(' (%s!)\n' % lasttestedversion) 2418 fm.plain(' (%s!)\n' % lasttestedversion)
2419 2419
2420 fm.condwrite(ui.verbose and extsource, 'source', 2420 fm.condwrite(ui.verbose and extsource, 'source',
2421 _(' location: %s\n'), extsource or "") 2421 _(' location: %s\n'), extsource or "")
2422 2422
2423 if ui.verbose:
2424 fm.plain(_(' bundled: %s\n') % ['no', 'yes'][isinternal])
2425 fm.data(bundled=isinternal)
2426
2423 fm.condwrite(ui.verbose and showtestedwith, 'testedwith', 2427 fm.condwrite(ui.verbose and showtestedwith, 'testedwith',
2424 _(' tested with: %s\n'), 2428 _(' tested with: %s\n'),
2425 fm.formatlist(showtestedwith, name='ver')) 2429 fm.formatlist(showtestedwith, name='ver'))
2426 2430
2427 fm.condwrite(ui.verbose and extbuglink, 'buglink', 2431 fm.condwrite(ui.verbose and extbuglink, 'buglink',