forked from openlp/openlp
removed not needed imports
This commit is contained in:
parent
4d1d912aaa
commit
0f8836ac54
@ -39,9 +39,10 @@ from subprocess import Popen, PIPE
|
|||||||
import sys
|
import sys
|
||||||
import urllib2
|
import urllib2
|
||||||
|
|
||||||
|
from PyQt4 import QtGui, QtCore
|
||||||
|
|
||||||
from openlp.core.lib import Registry, Settings
|
from openlp.core.lib import Registry, Settings
|
||||||
|
|
||||||
from PyQt4 import QtGui, QtCore
|
|
||||||
|
|
||||||
if sys.platform != u'win32' and sys.platform != u'darwin':
|
if sys.platform != u'win32' and sys.platform != u'darwin':
|
||||||
try:
|
try:
|
||||||
@ -50,7 +51,7 @@ if sys.platform != u'win32' and sys.platform != u'darwin':
|
|||||||
except ImportError:
|
except ImportError:
|
||||||
XDG_BASE_AVAILABLE = False
|
XDG_BASE_AVAILABLE = False
|
||||||
|
|
||||||
from openlp.core.lib import translate, check_directory_exists
|
from openlp.core.lib import translate
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
APPLICATION_VERSION = {}
|
APPLICATION_VERSION = {}
|
||||||
|
@ -31,11 +31,9 @@ The :mod:`openlp.core.utils` module provides the utility libraries for OpenLP.
|
|||||||
"""
|
"""
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import re
|
|
||||||
import sys
|
import sys
|
||||||
import urllib2
|
|
||||||
|
|
||||||
from openlp.core.lib import Registry, Settings
|
from openlp.core.lib import Settings
|
||||||
from openlp.core.utils import _get_frozen_path
|
from openlp.core.utils import _get_frozen_path
|
||||||
|
|
||||||
|
|
||||||
@ -47,7 +45,7 @@ if sys.platform != u'win32' and sys.platform != u'darwin':
|
|||||||
XDG_BASE_AVAILABLE = False
|
XDG_BASE_AVAILABLE = False
|
||||||
|
|
||||||
import openlp
|
import openlp
|
||||||
from openlp.core.lib import translate, check_directory_exists
|
from openlp.core.lib import check_directory_exists
|
||||||
|
|
||||||
|
|
||||||
log = logging.getLogger(__name__)
|
log = logging.getLogger(__name__)
|
||||||
|
Loading…
Reference in New Issue
Block a user