[elbe-devel] [PATCH 03/10] pylint elbeproject: fix too long line
Torben Hohn
torben.hohn at linutronix.de
Mon Apr 8 15:42:24 CEST 2019
pycodestyle complains:
elbepack/elbeproject.py:885:80: E501 line too long (105 > 79 characters)
fix it
Signed-off-by: Torben Hohn <torben.hohn at linutronix.de>
---
elbepack/elbeproject.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/elbepack/elbeproject.py b/elbepack/elbeproject.py
index 80cbb8f8..59fd9b04 100644
--- a/elbepack/elbeproject.py
+++ b/elbepack/elbeproject.py
@@ -882,7 +882,8 @@ class ElbeProject (object):
except KeyError:
self.log.printo("No Package " + p)
except SystemError as e:
- self.log.printo("Error: Unable to correct problems in package %s (%s)" % (p, str(e)))
+ self.log.printo("Error: Unable to correct problems in "
+ "package %s (%s)" % (p, str(e)))
# temporary disabled because of
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=776057
--
2.11.0
More information about the elbe-devel
mailing list