From 25f319a8790fdc0f8c6edf0bea5458f0b3d3b9e0 Mon Sep 17 00:00:00 2001 From: Rolf Eike Beer Date: Wed, 24 Oct 2018 23:11:48 +0200 Subject: allow tabs in packagelist bugzilla field Signed-off-by: Rolf Eike Beer --- tatt/packageFinder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tatt/packageFinder.py b/tatt/packageFinder.py index 13c36e5..5a8a099 100644 --- a/tatt/packageFinder.py +++ b/tatt/packageFinder.py @@ -12,7 +12,7 @@ def findPackages (s, arch): for line in s.splitlines(): if not line: continue - atom, _, arches = line.partition(' ') + atom, _, arches = line.replace('\t', ' ').partition(' ') if not arches or arch in arches.split(' '): packages.append(gP(atom)) -- cgit v1.2.3-65-gdbad