From e2c6fc57d44a72d0b36b384559c14769d15aff25 Mon Sep 17 00:00:00 2001 From: Lukas Holecek Date: May 02 2018 13:12:42 +0000 Subject: Fix bad indentation pointed out by pylint Fixes pylint error: Bad indentation. Found 24 spaces, expected 20 (bad-indentation) --- diff --git a/greenwave/api_v1.py b/greenwave/api_v1.py index 7e45709..66afcb3 100644 --- a/greenwave/api_v1.py +++ b/greenwave/api_v1.py @@ -234,10 +234,11 @@ def make_decision(): if ('DIST_GIT_BASE_URL' not in current_app.config or 'DIST_GIT_URL_TEMPLATE' not in current_app.config or 'KOJI_BASE_URL' not in current_app.config): - raise InternalServerError("If you want to apply a RemoteOriginalSpecNvrRule" - " you need to configure 'DIST_GIT_BASE_URL'," - "'DIST_GIT_URL_TEMPLATE' and KOJI_BASE_URL in " - "your configuration.") + raise InternalServerError( + "If you want to apply a RemoteOriginalSpecNvrRule" + " you need to configure 'DIST_GIT_BASE_URL'," + "'DIST_GIT_URL_TEMPLATE' and KOJI_BASE_URL in " + "your configuration.") applicable_policies = [policy for policy in current_app.config['policies'] if policy.applies_to(decision_context, product_version)]