diff options
Diffstat (limited to 'gitautodeploy/httpserver.py')
-rw-r--r-- | gitautodeploy/httpserver.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitautodeploy/httpserver.py b/gitautodeploy/httpserver.py index 71944b0..5313823 100644 --- a/gitautodeploy/httpserver.py +++ b/gitautodeploy/httpserver.py @@ -205,7 +205,7 @@ class WebhookRequestHandler(BaseHTTPRequestHandler): # If the path is not valid the filter does not match if not node_key in node_value: - logger.info("Filter '%s'' does not match since the path is invalid" % (filter_key)) + logger.info("Filter '%s' does not match since the path is invalid" % (filter_key)) raise FilterMatchError() node_value = node_value[node_key] |