diff options
author | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 11:46:45 +0900 |
---|---|---|
committer | David Pursehouse <dpursehouse@collab.net> | 2020-02-12 04:31:40 +0000 |
commit | 719675bcec58c60c8c9e29071c3942c343af6235 (patch) | |
tree | 95cadeef734c83734a9dd916466d3f7e5d5ba397 | |
parent | 21c1575ee429ff6be737e03e6517f03b8428d92e (diff) | |
download | git-repo-719675bcec58c60c8c9e29071c3942c343af6235.tar.gz |
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 <dpursehouse@collab.net>
Reviewed-by: Mike Frysinger <vapier@google.com>
-rw-r--r-- | subcmds/info.py | 2 |
1 files changed, 1 insertions, 1 deletions
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): | |||
122 | self.printSeparator() | 122 | self.printSeparator() |
123 | 123 | ||
124 | def findRemoteLocalDiff(self, project): | 124 | def findRemoteLocalDiff(self, project): |
125 | #Fetch all the latest commits | 125 | # Fetch all the latest commits. |
126 | if not self.opt.local: | 126 | if not self.opt.local: |
127 | project.Sync_NetworkHalf(quiet=True, current_branch_only=True) | 127 | project.Sync_NetworkHalf(quiet=True, current_branch_only=True) |
128 | 128 | ||