working archivebox command inside django legacy folder

This commit is contained in:
Nick Sweeting 2019-04-02 18:53:21 -04:00
parent 27708152d2
commit 68b4c01c6b
49 changed files with 222 additions and 673 deletions

View file

@ -1,10 +1,11 @@
from django.core.management.base import BaseCommand
from core.archive import main
from legacy.archive import main
class Command(BaseCommand):
help = 'ArchiveBox test.bee'
def handle(self, *args, **kwargs):
main()
main(*args)