Skip to content

Commit

Permalink
Fixed display of ineligible status to 'Queue'
Browse files Browse the repository at this point in the history
  • Loading branch information
b32147 committed Jan 30, 2019
1 parent f62f5cf commit a77b1ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ppmutils/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"""

__title__ = 'PPM Utils'
__version__ = '0.3.4'
__version__ = '0.3.5'
__author__ = 'Bryan Larson'
__license__ = 'BSD 2-Clause'
__copyright__ = 'Copyright 2011-2018 Harvard Medical School Department of Biomedical Informatics'
Expand Down
2 changes: 1 addition & 1 deletion ppmutils/ppm.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def choices():
(PPM.Enrollment.Proposed.value, 'Proposed'),
(PPM.Enrollment.Pending.value, 'Pending'),
(PPM.Enrollment.Accepted.value, 'Accepted'),
(PPM.Enrollment.Ineligible.value, 'Ineligible'),
(PPM.Enrollment.Ineligible.value, 'Queue'),
(PPM.Enrollment.Terminated.value, 'Finished'),
)

Expand Down

0 comments on commit a77b1ee

Please sign in to comment.