Skip to content
Snippets Groups Projects
Commit f89e65da authored by Piotr Ożarowski's avatar Piotr Ożarowski
Browse files

dh_python2.py: allow lines with build dependencies to start with a tab

parent 8f73c907
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment