summaryrefslogtreecommitdiffstats
path: root/subcmds/status.py
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2020-02-12 13:56:59 +0900
committerDavid Pursehouse <dpursehouse@collab.net>2020-02-12 05:17:08 +0000
commite5913ae41058ddd7f692e9cc18e5f71b8251bd60 (patch)
tree94f099a0290d28da431ceaefa68ab00c6ac90b8d /subcmds/status.py
parent119085e6b180b513f7976f91fe56ead11a125d4b (diff)
downloadgit-repo-e5913ae41058ddd7f692e9cc18e5f71b8251bd60.tar.gz
Fix flake8 E251 unexpected spaces around keyword / parameter equals
Fixed automatically with autopep8: git ls-files | grep py$ | xargs autopep8 --in-place --select E251 Change-Id: I58009e1c8c91c39745d559ac919be331d4cd9e77 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254598 Tested-by: David Pursehouse <dpursehouse@collab.net> Reviewed-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/status.py')
-rw-r--r--subcmds/status.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/status.py b/subcmds/status.py
index 63972d72..6012ae24 100644
--- a/subcmds/status.py
+++ b/subcmds/status.py
@@ -170,8 +170,8 @@ the following meanings:
170 class StatusColoring(Coloring): 170 class StatusColoring(Coloring):
171 def __init__(self, config): 171 def __init__(self, config):
172 Coloring.__init__(self, config, 'status') 172 Coloring.__init__(self, config, 'status')
173 self.project = self.printer('header', attr = 'bold') 173 self.project = self.printer('header', attr='bold')
174 self.untracked = self.printer('untracked', fg = 'red') 174 self.untracked = self.printer('untracked', fg='red')
175 175
176 orig_path = os.getcwd() 176 orig_path = os.getcwd()
177 try: 177 try: