From c68b0f691e556984258471cfa81ac20ec9d55ba7 Mon Sep 17 00:00:00 2001 From: Yuya Nishihara Date: Sun, 10 Jul 2016 21:59:43 +0900 Subject: [PATCH] debugextensions: simply keep testedwith variable as a list There should be no need to distinguish [] and None. --- mercurial/commands.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/mercurial/commands.py b/mercurial/commands.py index 549f3be501..01d5aa2047 100644 --- a/mercurial/commands.py +++ b/mercurial/commands.py @@ -2401,9 +2401,7 @@ def debugextensions(ui, **opts): fm = ui.formatter('debugextensions', opts) for extname, extmod in sorted(exts, key=operator.itemgetter(0)): extsource = extmod.__file__ - exttestedwith = getattr(extmod, 'testedwith', None) - if exttestedwith is not None: - exttestedwith = exttestedwith.split() + exttestedwith = getattr(extmod, 'testedwith', '').split() extbuglink = getattr(extmod, 'buglink', None) fm.startitem() @@ -2426,7 +2424,7 @@ def debugextensions(ui, **opts): _(' location: %s\n'), extsource or "") fm.condwrite(ui.verbose and exttestedwith, 'testedwith', - _(' tested with: %s\n'), ' '.join(exttestedwith or [])) + _(' tested with: %s\n'), ' '.join(exttestedwith)) fm.condwrite(ui.verbose and extbuglink, 'buglink', _(' bug reporting: %s\n'), extbuglink or "")