mercurial/commands.py
changeset 29889 42751543fa06
parent 29888 ed793f41e83f
child 29893 6f447b9ec263
--- a/mercurial/commands.py	Sat Aug 27 00:00:28 2016 +0900
+++ b/mercurial/commands.py	Fri Aug 26 23:38:52 2016 +0900
@@ -7297,14 +7297,13 @@
     fn = fm.nested("extensions")
     if names:
         namefmt = "  %%-%ds  " % max(len(n) for n in names)
-        if fn:
-            places = ["external", "internal"]
-        else:
-            places = [_("external"), _("internal")]
+        places = [_("external"), _("internal")]
         for n, v, p in zip(names, vers, isinternals):
             fn.startitem()
             fn.condwrite(ui.verbose, "name", namefmt, n)
-            fn.condwrite(ui.verbose, "place", "%s  ", places[p])
+            if ui.verbose:
+                fn.plain("%s  " % places[p])
+            fn.data(bundled=p)
             fn.condwrite(ui.verbose and v, "ver", "%s", v)
             if ui.verbose:
                 fn.plain("\n")