If you run citools migration --help you'll see the help text is all squashed into a single line. But if you run citools migration file-bugs --help it is formatted nicely.
I suspect this has something to do with how we're setting up the subcommands in cleo:
|
return self.call("help", self._config.name) |
This issue may be tricky to fix and will likely involve digging into cleo's internals. If we could suppress the help text when running citools migration --help (and only display the summary), that might be the best outcome here.