diff 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
line wrap: on
line diff
--- a/mercurial/commands.py	Sun Jul 10 22:07:34 2016 +0900
+++ b/mercurial/commands.py	Sat Mar 19 17:19:03 2016 -0700
@@ -2423,7 +2423,8 @@
                  _('  location: %s\n'), extsource or "")
 
         fm.condwrite(ui.verbose and exttestedwith, 'testedwith',
-                 _('  tested with: %s\n'), ' '.join(exttestedwith))
+                     _('  tested with: %s\n'),
+                     fm.formatlist(exttestedwith, name='ver'))
 
         fm.condwrite(ui.verbose and extbuglink, 'buglink',
                  _('  bug reporting: %s\n'), extbuglink or "")