From 3cda50a41b1a950d70be8887c5efe3735586d1bb Mon Sep 17 00:00:00 2001 From: David Pursehouse Date: Thu, 13 Feb 2020 13:17:03 +0900 Subject: pyflakes: Fix remaining "E501 line too long" warnings We increased the max line length to 100 columns which got rid of the majority of these warnings, but there were still a few lines that exceeded 100 columns. Change-Id: Ib3372868ca2297f83073a14f91c8ae3df9d0d0e6 Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/254699 Tested-by: David Pursehouse Reviewed-by: Mike Frysinger --- subcmds/forall.py | 3 ++- subcmds/gitc_init.py | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'subcmds') diff --git a/subcmds/forall.py b/subcmds/forall.py index dbf26f0b..d0e51920 100644 --- a/subcmds/forall.py +++ b/subcmds/forall.py @@ -127,7 +127,8 @@ without iterating through the remaining projects. help="Execute the command only on projects matching regex or wildcard expression") p.add_option('-i', '--inverse-regex', dest='inverse_regex', action='store_true', - help="Execute the command only on projects not matching regex or wildcard expression") + help="Execute the command only on projects not matching regex or " + "wildcard expression") p.add_option('-g', '--groups', dest='groups', help="Execute the command only on projects matching the specified groups") diff --git a/subcmds/gitc_init.py b/subcmds/gitc_init.py index 378f9236..30a9f7a5 100644 --- a/subcmds/gitc_init.py +++ b/subcmds/gitc_init.py @@ -62,7 +62,8 @@ use for this GITC client. def Execute(self, opt, args): gitc_client = gitc_utils.parse_clientdir(os.getcwd()) if not gitc_client or (opt.gitc_client and gitc_client != opt.gitc_client): - print('fatal: Please update your repo command. See go/gitc for instructions.', file=sys.stderr) + print('fatal: Please update your repo command. See go/gitc for instructions.', + file=sys.stderr) sys.exit(1) self.client_dir = os.path.join(gitc_utils.get_gitc_manifest_dir(), gitc_client) -- cgit v1.2.3-54-g00ecf