fixed other import issues derived from the removal of youtube_utils #273

This commit is contained in:
paul 2019-02-26 23:53:56 +01:00
parent 6eb27b655a
commit ae4deb412f
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
# -*- coding: utf-8 -*- # -*- coding: utf-8 -*-
import time import time
import platform import platform
if platform.system() == "Windows": if platform.system() == "Windows":
@ -17,7 +17,7 @@ import config
import sound import sound
import languageHandler import languageHandler
import logging import logging
import youtube_utils from audio_services import youtube_utils
from controller.buffers import baseBuffers from controller.buffers import baseBuffers
from sessions.twitter import compose, utils from sessions.twitter import compose, utils
from mysc.thread_utils import call_threaded from mysc.thread_utils import call_threaded

View File

@ -4,7 +4,7 @@ import platform
system = platform.system() system = platform.system()
import application import application
import requests import requests
import youtube_utils from audio_services import youtube_utils
import arrow import arrow
if system == "Windows": if system == "Windows":
from update import updater from update import updater