From 10dcca207438f284e21e5010de6ae0f766a0fa83 Mon Sep 17 00:00:00 2001 From: Sam Thursfield Date: Fri, 5 Dec 2014 10:16:35 +0000 Subject: Fix `morph help-extensions` returning no items We were passing a nonsensical value for the 'kind' parameter so it would always return an empty list. --- morphlib/app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/morphlib/app.py b/morphlib/app.py index 3f4171a4..930e023d 100644 --- a/morphlib/app.py +++ b/morphlib/app.py @@ -432,7 +432,7 @@ class Morph(cliapp.Application): self._help(True) def help_extensions(self, args): - exts = extensions.list_extensions(self.settings['build-ref-prefix']) + exts = extensions.list_extensions() template = "Extensions:\n %s\n" ext_string = '\n '.join(exts) self.output.write(template % (ext_string)) -- cgit v1.2.1