From 936ec085fd128573c6a071c13744138a7a2455f1 Mon Sep 17 00:00:00 2001 From: josh Date: Fri, 10 Aug 2018 13:47:01 -0400 Subject: [PATCH] Remove trailing whitespace in devenv_commands --- python/servo/devenv_commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index f6532b57097..31bfc8f48bd 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -228,7 +228,7 @@ class MachCommands(CommandBase): with cd(self.context.topdir): return self.call_rustup_run(["cargo", "fetch"], env=self.build_env()) - + @Command('rustfmt', description='Format the Rust code using Cargo fmt', category='devenv') @@ -241,7 +241,7 @@ class MachCommands(CommandBase): with cd(self.context.topdir): return self.call_rustup_run(["cargo", "fmt", "--", directory], env=self.build_env()) - + @Command('ndk-stack', description='Invoke the ndk-stack tool with the expected symbol paths', category='devenv')