From f89e65da057397a5c9b081e2da8180d68e042da1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20O=C5=BCarowski?= <piotr@debian.org> Date: Thu, 12 Sep 2013 23:09:48 +0200 Subject: [PATCH] dh_python2.py: allow lines with build dependencies to start with a tab --- dh_python2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dh_python2.py b/dh_python2.py index 4a8e57a..c2b22f1 100755 --- a/dh_python2.py +++ b/dh_python2.py @@ -18,7 +18,7 @@ if exists(NEW) and exists('debian/control'): break line_lower = line.lower() if inside: - if line.startswith(' '): + if line.startswith((' ', "\t")): if has_dhpython(line): binary = NEW break -- GitLab