From e3009e4a955dbad7eed8cc1765b38f8ebd948fd5 Mon Sep 17 00:00:00 2001 From: Julian Andres Klode Date: Wed, 10 Jun 2015 15:58:33 +0200 Subject: apt/debfile.py: Fix a too long line Gbp-Dch: ignore --- apt/debfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'apt') diff --git a/apt/debfile.py b/apt/debfile.py index 440f9532..d542adae 100644 --- a/apt/debfile.py +++ b/apt/debfile.py @@ -735,7 +735,8 @@ class DscSrcPackage(DebPackage): if 'Source' in sec: self.pkgname = sec['Source'] if 'Binary' in sec: - self.binaries = [b.strip() for b in sec['Binary'].split(',')] + self.binaries = [b.strip() for b in + sec['Binary'].split(',')] for tag in sec.keys(): if tag in sec: self._sections[tag] = sec[tag] -- cgit v1.2.3