~suutari-olli/openlp/click-slide-to-go-live-from-blank

« back to all changes in this revision

Viewing changes to openlp/core/lib/plugin.py

trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
"""
25
25
import logging
26
26
 
27
 
 
28
27
from PyQt5 import QtCore
29
28
 
30
29
from openlp.core.common import Registry, RegistryProperties, Settings, UiStrings
31
 
from openlp.core.utils import get_application_version
 
30
from openlp.core.common.versionchecker import get_application_version
32
31
 
33
32
log = logging.getLogger(__name__)
34
33