Remove trailing whitespace on Python files

Trailing whitespace was found using flake8

This is working towards making flake8 part of the tidy process: #6236
This commit is contained in:
Corey Farwell 2015-06-02 10:22:21 -04:00
parent f6fe195334
commit 7137b0610c
2 changed files with 7 additions and 7 deletions

View file

@ -148,7 +148,7 @@ class MachCommands(CommandBase):
if self.config["build"]["mode"] == "dev":
dev = True
elif self.config["build"]["mode"] == "release":
release = True
release = True
elif release_exists and not dev_exists:
release = True
elif dev_exists and not release_exists:
@ -320,7 +320,7 @@ class MachCommands(CommandBase):
@CommandArgument('--verbose', '-v',
action='store_true',
help='Print verbose output')
@CommandArgument('params', nargs='...',
help="Command-line arguments to be passed through to Cargo")
def clean(self, manifest_path, params, verbose=False):