From 719675bcec58c60c8c9e29071c3942c343af6235 Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Wed, 12 Feb 2020 11:46:45 +0900 Subject: [PATCH] info: Fix formatting of block comment flake8 reports: E265 block comment should start with '# ' While we're at it, add a period at the end of the comment sentence. Change-Id: Icb7119079a1d64e6defafc3f6d24e99dbf16139d Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254596 Tested-by: David Pursehouse Reviewed-by: Mike Frysinger --- subcmds/info.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subcmds/info.py b/subcmds/info.py index d62e1e64..a9ad52aa 100644 --- a/subcmds/info.py +++ b/subcmds/info.py @@ -122,7 +122,7 @@ class Info(PagedCommand): self.printSeparator() def findRemoteLocalDiff(self, project): - #Fetch all the latest commits + # Fetch all the latest commits. if not self.opt.local: project.Sync_NetworkHalf(quiet=True, current_branch_only=True)