summaryrefslogtreecommitdiffstats
path: root/subcmds/sync.py
diff options
context:
space:
mode:
authorDavid Pursehouse <dpursehouse@collab.net>2020-02-12 14:37:15 +0900
committerDavid Pursehouse <dpursehouse@collab.net>2020-02-12 05:45:44 +0000
commit42339d7e52d6de6c702b78be7f5014e13646cc1b (patch)
tree9272869b641a6f8cacf8380a3958b5cd6ba49b8d /subcmds/sync.py
parent03ae99290af9bf702657671ea992a918a4e737fa (diff)
downloadgit-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/sync.py')
-rw-r--r--subcmds/sync.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py
index 54b5a7fc..df23034b 100644
--- a/subcmds/sync.py
+++ b/subcmds/sync.py
@@ -355,7 +355,7 @@ later is required to fix a server side protocol bug.
355 except _FetchError: 355 except _FetchError:
356 pass 356 pass
357 except Exception as e: 357 except Exception as e:
358 print('error: Cannot fetch %s (%s: %s)' \ 358 print('error: Cannot fetch %s (%s: %s)'
359 % (project.name, type(e).__name__, str(e)), file=sys.stderr) 359 % (project.name, type(e).__name__, str(e)), file=sys.stderr)
360 err_event.set() 360 err_event.set()
361 raise 361 raise