diff --git a/openlp/core/common/__init__.py b/openlp/core/common/__init__.py index ba10da87c..b8a1a4d2e 100644 --- a/openlp/core/common/__init__.py +++ b/openlp/core/common/__init__.py @@ -370,4 +370,4 @@ def clean_filename(filename): """ if not isinstance(filename, str): filename = str(filename, 'utf-8') - return INVALID_FILE_CHARS.sub('_', CONTROL_CHARS.sub('', filename)) \ No newline at end of file + return INVALID_FILE_CHARS.sub('_', CONTROL_CHARS.sub('', filename)) diff --git a/openlp/core/common/versionchecker.py b/openlp/core/common/versionchecker.py index 5dcab6a6f..136405607 100644 --- a/openlp/core/common/versionchecker.py +++ b/openlp/core/common/versionchecker.py @@ -168,4 +168,3 @@ def check_latest_version(current_version): if remote_version: version_string = remote_version return version_string -