aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRolf Eike Beer <eike@sf-mail.de>2018-10-24 23:11:48 +0200
committerRolf Eike Beer <eike@sf-mail.de>2018-10-24 23:12:30 +0200
commit25f319a8790fdc0f8c6edf0bea5458f0b3d3b9e0 (patch)
tree3d7f368c001688c40b0e5f8e2b533ddbbe810865
parentadd use-loop template file to hold the per-package block of use tests (diff)
downloadtatt-25f319a8790fdc0f8c6edf0bea5458f0b3d3b9e0.tar.gz
tatt-25f319a8790fdc0f8c6edf0bea5458f0b3d3b9e0.tar.bz2
tatt-25f319a8790fdc0f8c6edf0bea5458f0b3d3b9e0.zip
allow tabs in packagelist bugzilla field
Signed-off-by: Rolf Eike Beer <eike@sf-mail.de>
-rw-r--r--tatt/packageFinder.py2
1 files changed, 1 insertions, 1 deletions
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))