PEP fixes

This commit is contained in:
Phill Ridout 2015-02-13 23:21:57 +00:00
parent 498d17b000
commit 2eb58a56bd
2 changed files with 1 additions and 1 deletions

View File

@ -23,6 +23,7 @@
The :mod:`~openlp.core.lib.exceptions` module contains custom exceptions The :mod:`~openlp.core.lib.exceptions` module contains custom exceptions
""" """
class ValidationError(Exception): class ValidationError(Exception):
""" """
The :class:`~openlp.core.lib.exceptions.ValidationError` exception provides a custom exception for validating The :class:`~openlp.core.lib.exceptions.ValidationError` exception provides a custom exception for validating

View File

@ -166,7 +166,6 @@ class TestThemeManager(TestCase):
mocked_getroot.return_value = MagicMock(**{'get.return_value': None}) mocked_getroot.return_value = MagicMock(**{'get.return_value': None})
theme_manager = ThemeManager(None) theme_manager = ThemeManager(None)
# WHEN: unzip_theme is called # WHEN: unzip_theme is called
theme_manager.unzip_theme('theme.file', 'folder') theme_manager.unzip_theme('theme.file', 'folder')