From 5d50bc350abcad898a0d1cc235758dfc3cccfac0 Mon Sep 17 00:00:00 2001 From: "martin@piware.de" <> Date: Thu, 6 Aug 2009 11:51:33 +0100 Subject: [PATCH] workitems: make postpone an alias for postponed --- workitems.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/workitems.py b/workitems.py index 6e01080..d562106 100755 --- a/workitems.py +++ b/workitems.py @@ -117,6 +117,8 @@ def get_blueprint_workitems(blueprint_url): state = 'done' if state == 'inprogress': state = 'todo' + if state == 'postpone': + state = 'postponed' if state not in valid_states: print >> sys.stderr, 'ERROR: invalid state "%s" for work item "%s"' % ( state, desc) -- 2.39.2