From 9beac2ae9bb2a1a83b10b67390e228688346d310 Mon Sep 17 00:00:00 2001 From: "martin@piware.de" <> Date: Wed, 25 Nov 2009 19:17:55 +0100 Subject: [PATCH] workitems.py: Fix parsing --- workitems.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/workitems.py b/workitems.py index dea7768..aa21e65 100755 --- a/workitems.py +++ b/workitems.py @@ -135,7 +135,7 @@ def get_blueprint_workitems(blueprint_url): if '

' in l: end = True - l = l.replace('
', '').replace('', '').replace('

', '').strip() + l = l.replace('
', '').replace('', '').replace('

', '').replace('', '').strip() if not l: break -- 2.39.2