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 --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'main.py') diff --git a/main.py b/main.py index fead2049..abb99cc5 100755 --- a/main.py +++ b/main.py @@ -229,7 +229,8 @@ class _Repo(object): if e.name: print('error: project group must be enabled for project %s' % e.name, file=sys.stderr) else: - print('error: project group must be enabled for the project in the current directory', file=sys.stderr) + print('error: project group must be enabled for the project in the current directory', + file=sys.stderr) result = 1 except SystemExit as e: if e.code: -- cgit v1.2.3-54-g00ecf