From 4c3e2ac45c41d8e9f27a477d8cac50daee51ce47 Mon Sep 17 00:00:00 2001 From: Raoul Snyman Date: Sun, 6 Apr 2014 01:06:37 +0200 Subject: [PATCH] Trying to fix pylint --- openlp/__init__.py | 4 ++-- openlp/core/ui/mainwindow.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/__init__.py b/openlp/__init__.py index ac5f063d4..bf7cbc680 100644 --- a/openlp/__init__.py +++ b/openlp/__init__.py @@ -30,7 +30,7 @@ The :mod:`openlp` module contains all the project produced OpenLP functionality """ -import openlp.core -import openlp.plugins +import core +import plugins __all__ = ['core', 'plugins'] diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index aa220a76b..8ac3130a0 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -367,7 +367,7 @@ class Ui_MainWindow(object): self.settings_menu.setTitle(translate('OpenLP.MainWindow', '&Settings')) self.settings_language_menu.setTitle(translate('OpenLP.MainWindow', '&Language')) self.help_menu.setTitle(translate('OpenLP.MainWindow', '&Help')) - self.media_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Media Manager')) + self.media_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Library')) self.service_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Service Manager')) self.theme_manager_dock.setWindowTitle(translate('OpenLP.MainWindow', 'Theme Manager')) self.file_new_item.setText(translate('OpenLP.MainWindow', '&New'))