diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-11-29 21:54:01 +0100 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-11-29 21:54:01 +0100 |
commit | eda3e82575e90f9102df2b7a6871e6b48dad889a (patch) | |
tree | 20831a54393a2eaabf054cfbfa6df3fee1004720 | |
parent | 386715d01ba3f13b48a750cf6c491df1587288ce (diff) | |
download | Git-Auto-Deploy-eda3e82575e90f9102df2b7a6871e6b48dad889a.zip Git-Auto-Deploy-eda3e82575e90f9102df2b7a6871e6b48dad889a.tar.gz Git-Auto-Deploy-eda3e82575e90f9102df2b7a6871e6b48dad889a.tar.bz2 |
Fixing typo
-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] |