Add support for "Not" blueprint priority

Launchpad apparently introduced a new priority called "Not" (distinct
from "Undefined", don't ask me why). This adds support for it.

Fixes bug 1262891

Change-Id: I7d3dbc2078a66571f3806f53aeb058ce4233b75c
This commit is contained in:
Thierry Carrez 2013-12-20 11:42:45 +01:00
parent 6a76d601ed
commit a0df2bdb9a
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class BlueprintReview():
class ExtendedBlueprint():
priorities = ('Essential', 'High', 'Medium', 'Low', 'Undefined')
priorities = ('Essential', 'High', 'Medium', 'Low', 'Undefined', 'Not')
implementations = ('Implemented', 'Deployment', 'Needs Code Review',
'Beta Available', 'Good progress', 'Slow progress',