aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristopher Allan Webber <cwebber@dustycloud.org>2012-01-21 16:58:03 -0600
committerChristopher Allan Webber <cwebber@dustycloud.org>2012-01-21 16:58:03 -0600
commit2c1f1fd08b38f0715673d9f38e4703ae4041da69 (patch)
tree00bea43d125d257240440c29db6206e829bc2ba2
parentda6206c4beb2edb43398eaa06fc78f41d7088481 (diff)
downloadmediagoblin-2c1f1fd08b38f0715673d9f38e4703ae4041da69.tar.lz
mediagoblin-2c1f1fd08b38f0715673d9f38e4703ae4041da69.tar.xz
mediagoblin-2c1f1fd08b38f0715673d9f38e4703ae4041da69.zip
Show the license list in sorted form
-rw-r--r--mediagoblin/tools/licenses.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/tools/licenses.py b/mediagoblin/tools/licenses.py
index 44d8e494..d67510fa 100644
--- a/mediagoblin/tools/licenses.py
+++ b/mediagoblin/tools/licenses.py
@@ -49,7 +49,7 @@ SUPPORTED_LICENSES = dict(SORTED_SUPPORTED_LICENSES)
def licenses_as_choices():
license_list = []
- for uri, data in SUPPORTED_LICENSES.items():
+ for uri, data in SORTED_SUPPORTED_LICENSES:
license_list.append((uri, data["abbreviation"]))
return license_list