Change imports to new modules

merge-requests/30/head
Bob Mottram 2020-11-28 10:54:48 +00:00
parent d466b83df0
commit ed51cf51e7
2 changed files with 6 additions and 6 deletions

View File

@ -10,11 +10,11 @@ import os
from datetime import datetime from datetime import datetime
from content import replaceEmojiFromTags from content import replaceEmojiFromTags
from webapp import getIconsWebPath from webapp_utils import getIconsWebPath
from webapp import htmlHeaderWithExternalStyle from webapp_utils import htmlHeaderWithExternalStyle
from webapp import htmlFooter from webapp_utils import htmlFooter
from webapp_media import addEmbeddedElements
from webapp_utils import getPostAttachmentsAsHtml from webapp_utils import getPostAttachmentsAsHtml
from webapp_media import addEmbeddedElements
from utils import getMediaFormats from utils import getMediaFormats
from utils import getNicknameFromActor from utils import getNicknameFromActor
from utils import getDomainFromActor from utils import getDomainFromActor

View File

@ -56,8 +56,8 @@ from posts import isMuted
from posts import isImageMedia from posts import isImageMedia
from posts import sendSignedJson from posts import sendSignedJson
from posts import sendToFollowersThread from posts import sendToFollowersThread
from webapp import individualPostAsHtml from webapp_utils import getIconsWebPath
from webapp import getIconsWebPath from webapp_post import individualPostAsHtml
from question import questionUpdateVotes from question import questionUpdateVotes
from media import replaceYouTube from media import replaceYouTube
from git import isGitPatch from git import isGitPatch