diff options
author | Matt Murphy <matthew.john.murphy@gmail.com> | 2014-11-27 23:47:57 -0600 |
---|---|---|
committer | Matt Murphy <matthew.john.murphy@gmail.com> | 2014-11-28 08:57:07 -0600 |
commit | b4171b41e1e78d63729545ca9e4749e7eb818c30 (patch) | |
tree | 7b985e0ef58fcb4e3d627186125f5c678d371a59 /python/servo/post_build_commands.py | |
parent | b56bab4e407b38fa1e58d8be247ecd5f156c89bc (diff) | |
download | servo-b4171b41e1e78d63729545ca9e4749e7eb818c30.tar.gz servo-b4171b41e1e78d63729545ca9e4749e7eb818c30.zip |
Remove default value for params in mach doc #4134
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index ddb7fb6574c..c2c4bb5c06b 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -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() |