~raoul-snyman/openlp/dont-test-uno-on-macos

« back to all changes in this revision

Viewing changes to openlp/plugins/bibles/lib/manager.py

  • Committer: Raoul Snyman
  • Date: 2017-10-25 21:18:38 UTC
  • mfrom: (2780.1.2 refactorings-3)
  • Revision ID: raoul@snyman.info-20171025211838-be4wutkihlytvkk3
Merge in refactorings-3

Show diffs side-by-side

added added

removed removed

Lines of Context:
25
25
from openlp.core.common import delete_file
26
26
from openlp.core.common.applocation import AppLocation
27
27
from openlp.core.common.i18n import UiStrings, translate
28
 
from openlp.core.common.mixins import OpenLPMixin
 
28
from openlp.core.common.mixins import LogMixin, RegistryProperties
29
29
from openlp.core.common.path import Path
30
 
from openlp.core.common.registry import RegistryProperties
31
30
from openlp.core.common.settings import Settings
32
31
from openlp.plugins.bibles.lib import LanguageSelection, parse_reference
33
32
from openlp.plugins.bibles.lib.db import BibleDB, BibleMeta
98
97
        ]
99
98
 
100
99
 
101
 
class BibleManager(OpenLPMixin, RegistryProperties):
 
100
class BibleManager(LogMixin, RegistryProperties):
102
101
    """
103
102
    The Bible manager which holds and manages all the Bibles.
104
103
    """