diff options
author | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-11-14 12:09:38 +0900 |
---|---|---|
committer | David Pursehouse <david.pursehouse@sonymobile.com> | 2012-11-14 12:09:38 +0900 |
commit | 8f62fb7bd305337994bced7d23b347d0d39f5faf (patch) | |
tree | 7a00915a4e6138fe2c12d6f8d181b623df8962a2 /subcmds/download.py | |
parent | c1b86a232383748811c6faf17f364e63e10f7dd4 (diff) | |
download | git-repo-8f62fb7bd305337994bced7d23b347d0d39f5faf.tar.gz |
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
Diffstat (limited to 'subcmds/download.py')
-rw-r--r-- | subcmds/download.py | 6 |
1 files changed, 3 insertions, 3 deletions
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. | |||
33 | """ | 33 | """ |
34 | 34 | ||
35 | def _Options(self, p): | 35 | def _Options(self, p): |
36 | p.add_option('-c','--cherry-pick', | 36 | p.add_option('-c', '--cherry-pick', |
37 | dest='cherrypick', action='store_true', | 37 | dest='cherrypick', action='store_true', |
38 | help="cherry-pick instead of checkout") | 38 | help="cherry-pick instead of checkout") |
39 | p.add_option('-r','--revert', | 39 | p.add_option('-r', '--revert', |
40 | dest='revert', action='store_true', | 40 | dest='revert', action='store_true', |
41 | help="revert instead of checkout") | 41 | help="revert instead of checkout") |
42 | p.add_option('-f','--ff-only', | 42 | p.add_option('-f', '--ff-only', |
43 | dest='ffonly', action='store_true', | 43 | dest='ffonly', action='store_true', |
44 | help="force fast-forward merge") | 44 | help="force fast-forward merge") |
45 | 45 | ||