3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-11-22 11:23:11 +00:00
This commit is contained in:
Yoann Pétri 2019-04-28 13:08:51 +02:00
parent db0df75a1b
commit aa1c948367
2 changed files with 2 additions and 2 deletions

View file

@ -124,6 +124,6 @@ STATIC_ROOT = os.path.join(BASE_DIR, 'static')
LOGIN_URL = '/users/login'
MEDIA_ROOT = 'mediafiles/'
MEDIA_ROOT = os.path.join(BASE_DIR, 'mediafiles')
MEDIA_URL = '/media/'

View file

@ -8,7 +8,7 @@ from django.template.loader import get_template
from django_tex.exceptions import TexError
from django.conf import settings
DEFAULT_INTERPRETER = 'lualatex'
DEFAULT_INTERPRETER = 'pdflatex'
def run_tex(source):
"""