[Buildroot] [git commit] support/scripts/pkg-stats: fix flake8 E501 warning

Thomas Petazzoni thomas.petazzoni at bootlin.com
Tue Mar 24 14:27:57 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=f7f33771b3a7889e5781b30830b1400489880252
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/master

Fixes:

support/scripts/pkg-stats:281:133: E501 line too long (139 > 132 characters)

Signed-off-by: Thomas Petazzoni <thomas.petazzoni at bootlin.com>
---
 support/scripts/pkg-stats | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/support/scripts/pkg-stats b/support/scripts/pkg-stats
index 039a1937b9..4d8e932a9f 100755
--- a/support/scripts/pkg-stats
+++ b/support/scripts/pkg-stats
@@ -278,7 +278,8 @@ class Package:
 
     def __str__(self):
         return "%s (path='%s', license='%s', license_files='%s', hash='%s', patches=%d)" % \
-            (self.name, self.path, self.is_status_ok('license'), self.is_status_ok('license-files'), self.status['hash'], self.patch_count)
+            (self.name, self.path, self.is_status_ok('license'),
+             self.is_status_ok('license-files'), self.status['hash'], self.patch_count)
 
 
 class CVE:


More information about the buildroot mailing list