From 9963be9a2b32e5bafcf790c2a9989eb76011aa25 Mon Sep 17 00:00:00 2001 From: Trent Palmer Date: Sat, 3 Apr 2021 01:02:25 -0700 Subject: [PATCH] add CC0 1.0 License info --- audio/choices.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/audio/choices.py b/audio/choices.py index 129bc53..8406dea 100644 --- a/audio/choices.py +++ b/audio/choices.py @@ -4,7 +4,8 @@ LICENSE_CHOICES = [ (3, 'CC BY-SA 2.5'), (4, 'CC BY-SA 3.0'), (5, 'CC BY 3.0'), - (6, 'CC BY 1.0') + (6, 'CC BY 1.0'), + (7, 'CC0 1.0') ] @@ -21,3 +22,5 @@ def get_license_info(x): return ('CC BY 3.0', 'https://creativecommons.org/licenses/by/3.0') if x == 6: return ('CC BY 1.0', 'https://creativecommons.org/licenses/by/1.0') + if x == 6: + return ('CC0 1.0', 'https://creativecommons.org/publicdomain/zero/1.0')