comparison mercurial/commands.py @ 29717:3ef9aa7ad1fc

debugextension: change "testedwith" to a list (BC) It wasn't a list since the formatter couldn't process a list. We have no such problem now and the -T option is experimental, so we can change it.
author Yuya Nishihara <yuya@tcha.org>
date Sat, 19 Mar 2016 17:19:03 -0700
parents d29fbf97cc9f
children cbeb2cb578b1
comparison
equal deleted inserted replaced
29716:d29fbf97cc9f 29717:3ef9aa7ad1fc
2421 2421
2422 fm.condwrite(ui.verbose and extsource, 'source', 2422 fm.condwrite(ui.verbose and extsource, 'source',
2423 _(' location: %s\n'), extsource or "") 2423 _(' location: %s\n'), extsource or "")
2424 2424
2425 fm.condwrite(ui.verbose and exttestedwith, 'testedwith', 2425 fm.condwrite(ui.verbose and exttestedwith, 'testedwith',
2426 _(' tested with: %s\n'), ' '.join(exttestedwith)) 2426 _(' tested with: %s\n'),
2427 fm.formatlist(exttestedwith, name='ver'))
2427 2428
2428 fm.condwrite(ui.verbose and extbuglink, 'buglink', 2429 fm.condwrite(ui.verbose and extbuglink, 'buglink',
2429 _(' bug reporting: %s\n'), extbuglink or "") 2430 _(' bug reporting: %s\n'), extbuglink or "")
2430 2431
2431 fm.end() 2432 fm.end()