Skip to content
This repository has been archived by the owner on Nov 22, 2019. It is now read-only.

Commit

Permalink
Sort colorspace list
Browse files Browse the repository at this point in the history
  • Loading branch information
mfe committed Jan 22, 2014
1 parent 398c9fe commit a02fc04
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lutLab/rgb_to_xyz_matrix.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,8 @@ def __get_options():
parser.add_argument("-c", "--colorspace",
help=("Input RGB Colorspace."),
type=str,
choices= COLORSPACES.keys()+PRIVATE_COLORSPACES.keys(),
choices= sorted(COLORSPACES.keys() +
PRIVATE_COLORSPACES.keys()),
default='REC709')
# Output format
parser.add_argument("-f", "--format",
Expand Down

0 comments on commit a02fc04

Please sign in to comment.