summaryrefslogtreecommitdiffstats
path: root/gitautodeploy/parsers/bitbucket.py
diff options
context:
space:
mode:
authorOliver Poignant <oliver@poignant.se>2016-05-29 10:39:53 +0200
committerOliver Poignant <oliver@poignant.se>2016-05-29 10:39:53 +0200
commitb2f95fa7a1f12ea4b8029320db4c7458a9a32feb (patch)
tree2258bb6d704d19e0a8bd7a043781bfa4f4ae214e /gitautodeploy/parsers/bitbucket.py
parent110be3c3ea3d34c5cd686061f9dda7e69222e536 (diff)
parent84e99d89e75b4c2e5e5e8678a15adb9d391daa44 (diff)
downloadGit-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.zip
Git-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.tar.gz
Git-Auto-Deploy-b2f95fa7a1f12ea4b8029320db4c7458a9a32feb.tar.bz2
Merge branch 'master' into development
Diffstat (limited to 'gitautodeploy/parsers/bitbucket.py')
-rw-r--r--gitautodeploy/parsers/bitbucket.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gitautodeploy/parsers/bitbucket.py b/gitautodeploy/parsers/bitbucket.py
index 791b491..353435c 100644
--- a/gitautodeploy/parsers/bitbucket.py
+++ b/gitautodeploy/parsers/bitbucket.py
@@ -13,7 +13,7 @@ class BitBucketRequestParser(WebhookRequestParser):
ref = ""
action = ""
- logger.info("Received event from BitBucket")
+ logger.debug("Received event from BitBucket")
if 'repository' not in data:
logger.error("Unable to recognize data format")
@@ -34,4 +34,4 @@ class BitBucketRequestParser(WebhookRequestParser):
# Get a list of configured repositories that matches the incoming web hook reqeust
repo_configs = self.get_matching_repo_configs(repo_urls)
- return repo_configs, ref or "master", action \ No newline at end of file
+ return repo_configs, ref or "master", action, repo_urls \ No newline at end of file