1
0
Fork 0
mirror of synced 2024-06-24 17:10:21 +12:00

fix: Move the setup_django command to a place where we already know what the actual subcommand is

This commit is contained in:
Cristian 2020-12-07 16:42:16 -05:00 committed by Cristian Vargas
parent f6c73f9aeb
commit 35a5700c73

View file

@ -58,6 +58,8 @@ def run_subcommand(subcommand: str,
stdin: Optional[IO]=None,
pwd: Union[Path, str, None]=None) -> None:
"""Run a given ArchiveBox subcommand with the given list of args"""
from ..config import setup_django
setup_django()
module = import_module('.archivebox_{}'.format(subcommand), __package__)
module.main(args=subcommand_args, stdin=stdin, pwd=pwd) # type: ignore
@ -136,5 +138,3 @@ __all__ = (
)
from ..config import setup_django
setup_django()