aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoah Meyerhans <noahm@debian.org>2020-03-31 14:05:38 -0700
committerNoah Meyerhans <noahm@debian.org>2020-04-01 10:40:47 -0700
commit5ef3acc2ea4f01fc3208a07f740d6ece0341ecd8 (patch)
tree2dca3cb9b6228d9792287ac3fdb16654319fd440
parent51094627657db3701f038580b59543afa0604837 (diff)
downloadkernel_replicant_linux-5ef3acc2ea4f01fc3208a07f740d6ece0341ecd8.tar.gz
kernel_replicant_linux-5ef3acc2ea4f01fc3208a07f740d6ece0341ecd8.tar.bz2
kernel_replicant_linux-5ef3acc2ea4f01fc3208a07f740d6ece0341ecd8.zip
Fix pycodestyle error
7a54cc60ba9f ("Cope with change to Module.symvers file structure") introduced a pycodestyle error due to a line length >80 columns.
-rw-r--r--debian/changelog6
-rw-r--r--debian/lib/python/debian_linux/abi.py3
2 files changed, 8 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog
index b8f69db61b61..9228b3151722 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+linux (5.5.13-3) UNRELEASED; urgency=medium
+
+ * Fix autopkgtest failure due to pycodestyle violation
+
+ -- Noah Meyerhans <noahm@debian.org> Wed, 01 Apr 2020 10:39:48 -0700
+
linux (5.5.13-2) unstable; urgency=medium
* bpf: Undo incorrect __reg_bound_offset32 handling (CVE-2020-8835)
diff --git a/debian/lib/python/debian_linux/abi.py b/debian/lib/python/debian_linux/abi.py
index 8c108b6fdfbf..abaaeeaa9472 100644
--- a/debian/lib/python/debian_linux/abi.py
+++ b/debian/lib/python/debian_linux/abi.py
@@ -35,7 +35,8 @@ class Symbols(dict):
def read(self, file):
for line in file:
- version, name, module, export, namespace = line.strip('\r\n').split('\t')
+ version, name, module, export, namespace = \
+ line.strip('\r\n').split('\t')
self[name] = Symbol(name, namespace, module, version, export)
def write(self, file):