Fix pep8 violation (line length) in previous commit

This commit is contained in:
Robie Basak 2014-03-17 08:18:22 +00:00
parent c1e3ca14dc
commit 02d3f8f3a0

View File

@ -106,7 +106,8 @@ def check_binary_dependencies(apt_cache, control):
for field in ('Depends', 'Pre-Depends', 'Recommends'):
if field not in control.section:
continue
for or_group in apt.apt_pkg.parse_src_depends(control.section[field]):
for or_group in apt.apt_pkg.parse_src_depends(
control.section[field]):
pkgname = or_group[0][0]
if pkgname.startswith('$'):
continue