Remove default value for params in mach doc #4134

This commit is contained in:
Matt Murphy 2014-11-27 23:47:57 -06:00
parent b56bab4e40
commit b4171b41e1

View file

@ -66,7 +66,7 @@ class MachCommands(CommandBase):
description='Generate documentation',
category='post-build')
@CommandArgument(
'params', default=None, nargs='...',
'params', nargs='...',
help="Command-line arguments to be passed through to cargo doc")
def doc(self, params):
self.ensure_bootstrapped()