fnp
/
audio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
e1b56c9
)
Fix.
author
Radek Czajka
<rczajka@rczajka.pl>
Thu, 21 May 2020 12:30:42 +0000
(14:30 +0200)
committer
Radek Czajka
<rczajka@rczajka.pl>
Thu, 21 May 2020 12:30:42 +0000
(14:30 +0200)
src/youtube/models.py
patch
|
blob
|
history
diff --git
a/src/youtube/models.py
b/src/youtube/models.py
index
1a3fd01
..
e6a24ce
100644
(file)
--- a/
src/youtube/models.py
+++ b/
src/youtube/models.py
@@
-1,11
+1,11
@@
import io
from os import unlink
from tempfile import NamedTemporaryFile
import io
from os import unlink
from tempfile import NamedTemporaryFile
-from django.conf import settings
from django.db import models
from django.utils.translation import gettext_lazy as _
from django.template import Template, Context
from apiclient import youtube_call
from django.db import models
from django.utils.translation import gettext_lazy as _
from django.template import Template, Context
from apiclient import youtube_call
+from archive.settings import LICENSE, LICENSE_NAME
from .utils import (
concat_audio,
concat_videos,
from .utils import (
concat_audio,
concat_videos,
@@
-45,8
+45,8
@@
class YouTube(models.Model):
def get_context(self, audiobook):
return Context(dict(
audiobook=audiobook,
def get_context(self, audiobook):
return Context(dict(
audiobook=audiobook,
- LICENSE=
settings.
LICENSE,
- LICENSE_NAME=
settings.
LICENSE_NAME,
+ LICENSE=LICENSE,
+ LICENSE_NAME=LICENSE_NAME,
))
def get_description(self, audiobook):
))
def get_description(self, audiobook):