mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 14:44:29 -04:00
fix circular import
This commit is contained in:
parent
9c59582722
commit
9806ed8d8c
3 changed files with 7 additions and 7 deletions
|
@ -14,11 +14,11 @@ from django.contrib.auth import get_user_model
|
|||
from core.models import Snapshot
|
||||
from core.forms import AddLinkForm
|
||||
|
||||
from ..util import htmldecode, urldecode, ansi_to_html
|
||||
from ..logging_util import printable_filesize
|
||||
from ..main import add, remove
|
||||
from ..config import OUTPUT_DIR
|
||||
from ..extractors import archive_links
|
||||
from util import htmldecode, urldecode, ansi_to_html
|
||||
from logging_util import printable_filesize
|
||||
from main import add, remove
|
||||
from config import OUTPUT_DIR
|
||||
from extractors import archive_links
|
||||
|
||||
# TODO: https://stackoverflow.com/questions/40760880/add-custom-button-to-django-admin-panel
|
||||
|
||||
|
|
|
@ -112,7 +112,7 @@ LANGUAGE_CODE = 'en-us'
|
|||
TIME_ZONE = 'UTC'
|
||||
USE_I18N = False
|
||||
USE_L10N = False
|
||||
USE_TZ = True
|
||||
USE_TZ = False
|
||||
|
||||
DATETIME_FORMAT = 'Y-m-d g:iA'
|
||||
SHORT_DATETIME_FORMAT = 'Y-m-d h:iA'
|
||||
|
|
|
@ -56,7 +56,7 @@ from .config import (
|
|||
stderr,
|
||||
ConfigDict,
|
||||
ANSI,
|
||||
IS_TTY,
|
||||
# IS_TTY,
|
||||
USER,
|
||||
ARCHIVEBOX_BINARY,
|
||||
ONLY_NEW,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue