From: Andrew Engelbrecht Date: Wed, 29 Mar 2017 15:51:45 +0000 (-0400) Subject: Revert "added "see description for license" license option" X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=79e32ace920d74ecc1b811103440dd7cc97dbf27;p=mediagoblin-libreplanet.git Revert "added "see description for license" license option" This reverts commit ebfb81ea2a6ffcd4c18e99d752175418776f5183. --- diff --git a/mediagoblin_libreplanet/__init__.py b/mediagoblin_libreplanet/__init__.py index 5af3195..5b7f38f 100644 --- a/mediagoblin_libreplanet/__init__.py +++ b/mediagoblin_libreplanet/__init__.py @@ -39,15 +39,10 @@ cc_by_nd_4 = License("CC BY-ND 4.0", gfdl_1_3 = License("GFDL 1.3", "GNU Free Documentation License 1.3", "https://www.gnu.org/licenses/fdl-1.3.en.html") -see_desc = License("See description for license", - "See description for license", - "./") -SORTED_LICENSES.insert(1, see_desc) -SORTED_LICENSES.insert(2, cc_by_4) -SORTED_LICENSES.insert(3, cc_by_sa_4) -SORTED_LICENSES.insert(4, cc_by_nd_4) -SORTED_LICENSES.insert(5, gfdl_1_3) -SUPPORTED_LICENSES[see_desc.uri] = see_desc +SORTED_LICENSES.insert(1, cc_by_4) +SORTED_LICENSES.insert(2, cc_by_sa_4) +SORTED_LICENSES.insert(3, cc_by_nd_4) +SORTED_LICENSES.insert(4, gfdl_1_3) SUPPORTED_LICENSES[cc_by_4.uri] = cc_by_4 SUPPORTED_LICENSES[cc_by_sa_4.uri] = cc_by_sa_4 SUPPORTED_LICENSES[cc_by_nd_4.uri] = cc_by_nd_4