From 8f62fb7bd305337994bced7d23b347d0d39f5faf Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 14 Nov 2012 12:09:38 +0900 Subject: Tidy up code formatting a bit more Enable the following Pylint warnings: C0322: Operator not preceded by a space C0323: Operator not followed by a space C0324: Comma not followed by a space And make the necessary fixes. Change-Id: I74d74283ad5138cbaf28d492b18614eb355ff9fe --- subcmds/download.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subcmds/download.py') diff --git a/subcmds/download.py b/subcmds/download.py index 6aa54afa..471e88b5 100644 --- a/subcmds/download.py +++ b/subcmds/download.py @@ -33,13 +33,13 @@ makes it available in your project's local working directory. """ def _Options(self, p): - p.add_option('-c','--cherry-pick', + p.add_option('-c', '--cherry-pick', dest='cherrypick', action='store_true', help="cherry-pick instead of checkout") - p.add_option('-r','--revert', + p.add_option('-r', '--revert', dest='revert', action='store_true', help="revert instead of checkout") - p.add_option('-f','--ff-only', + p.add_option('-f', '--ff-only', dest='ffonly', action='store_true', help="force fast-forward merge") -- cgit v1.2.3-54-g00ecf