diff options
| author | Julian Andres Klode <jak@debian.org> | 2015-06-10 15:58:33 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2015-06-10 15:58:33 +0200 |
| commit | e3009e4a955dbad7eed8cc1765b38f8ebd948fd5 (patch) | |
| tree | 0ac668cab90df425246580d380e5f7b1c911b8dc | |
| parent | 01b73158bc20096a9602068aa724b9bd4528a77b (diff) | |
| download | python-apt-e3009e4a955dbad7eed8cc1765b38f8ebd948fd5.tar.gz | |
apt/debfile.py: Fix a too long line
Gbp-Dch: ignore
| -rw-r--r-- | apt/debfile.py | 3 |
1 files changed, 2 insertions, 1 deletions
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] |
