From cfadb43b93f8519ccacabc8d84d20f3d185bdcb7 Mon Sep 17 00:00:00 2001 From: derAnfaenger Date: Wed, 18 Oct 2017 11:11:25 +0200 Subject: [PATCH] codebase: Remove multiple whitespaces after comma. --- zerver/lib/export.py | 2 +- zerver/webhooks/gitlab/view.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/zerver/lib/export.py b/zerver/lib/export.py index 110c45af0d..cb78a06dcc 100644 --- a/zerver/lib/export.py +++ b/zerver/lib/export.py @@ -333,7 +333,7 @@ def export_from_config(response, config, seed_object=None, context=None): rows = list(query) elif config.id_source: - # In this mode, we are the figurative Blog, and we now + # In this mode, we are the figurative Blog, and we now # need to look at the current response to get all the # blog ids from the Article rows we fetched previously. model = config.model diff --git a/zerver/webhooks/gitlab/view.py b/zerver/webhooks/gitlab/view.py index eb6e821d23..c502df1a99 100644 --- a/zerver/webhooks/gitlab/view.py +++ b/zerver/webhooks/gitlab/view.py @@ -344,7 +344,7 @@ def get_subject_based_on_event(event, payload): return get_repo_name(payload) def get_event(request, payload, branches): - # type: (HttpRequest, Dict[str, Any], Optional[Text]) -> Optional[str] + # type: (HttpRequest, Dict[str, Any], Optional[Text]) -> Optional[str] event = request.META['HTTP_X_GITLAB_EVENT'] if event == 'Issue Hook': action = payload['object_attributes'].get('action')