diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 14:37:15 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 05:45:44 +0000 |
commit | 42339d7e52d6de6c702b78be7f5014e13646cc1b (patch) | |
tree | 9272869b641a6f8cacf8380a3958b5cd6ba49b8d /subcmds/upload.py | |
parent | 03ae99290af9bf702657671ea992a918a4e737fa (diff) | |
download | git-repo-42339d7e52d6de6c702b78be7f5014e13646cc1b.tar.gz |
Remove redundant backslashes
fleka8 reports:
E502 the backslash is redundant between brackets
Fixed automatically with autopep8:
git-repo $ git ls-files | grep py$ | xargs autopep8 --in-place --select E502
Change-Id: I1486ae1d17206918474363daf518274c5be8daed
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254602
Tested-by: David Pursehouse <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'subcmds/upload.py')
-rw-r--r-- | subcmds/upload.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/subcmds/upload.py b/subcmds/upload.py index f81491a2..c0f870eb 100644 --- a/subcmds/upload.py +++ b/subcmds/upload.py | |||
@@ -422,8 +422,8 @@ Gerrit Code Review: https://www.gerritcodereview.com/ | |||
422 | else: | 422 | else: |
423 | fmt = '\n (%s)' | 423 | fmt = '\n (%s)' |
424 | print(('[FAILED] %-15s %-15s' + fmt) % ( | 424 | print(('[FAILED] %-15s %-15s' + fmt) % ( |
425 | branch.project.relpath + '/', \ | 425 | branch.project.relpath + '/', |
426 | branch.name, \ | 426 | branch.name, |
427 | str(branch.error)), | 427 | str(branch.error)), |
428 | file=sys.stderr) | 428 | file=sys.stderr) |
429 | print() | 429 | print() |