X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/02fe6525fe7fa7c16d6e1dfe0ca040ac07d41325..HEAD:/scripts/make-xml-zip.py diff --git a/scripts/make-xml-zip.py b/scripts/make-xml-zip.py index de579c3e2..80ae79926 100755 --- a/scripts/make-xml-zip.py +++ b/scripts/make-xml-zip.py @@ -1,20 +1,17 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -# This file is part of Wolnelektury, licensed under GNU Affero GPLv3 or later. -# Copyright © Fundacja Nowoczesna Polska. See NOTICE for more information. +# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later. +# Copyright © Fundacja Wolne Lektury. See NOTICE for more information. # -import sys -sys.path.insert(0, '../apps') -sys.path.insert(0, '../lib') -sys.path.insert(0, '../lib/librarian') -sys.path.insert(0, '..') - -from django.core.management import setup_environ -from wolnelektury import settings +import os +import django import sys import zipfile -setup_environ(settings) +sys.path.insert(0, os.path.join(os.path.dirname(__file__), '../src')) + +os.environ.setdefault("DJANGO_SETTINGS_MODULE", "wolnelektury.settings") +django.setup() from catalogue.models import Book