From 02d3f8f3a098b1e80072de64ef9be693174fb9d0 Mon Sep 17 00:00:00 2001 From: Robie Basak Date: Mon, 17 Mar 2014 08:18:22 +0000 Subject: [PATCH] Fix pep8 violation (line length) in previous commit --- check-mir | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/check-mir b/check-mir index dc30cf5..0c65442 100755 --- a/check-mir +++ b/check-mir @@ -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