diff options
author | Oliver Poignant <oliver@poignant.se> | 2016-04-14 00:14:42 +0200 |
---|---|---|
committer | Oliver Poignant <oliver@poignant.se> | 2016-04-14 00:14:42 +0200 |
commit | 93e6541a72e9f57964ea7a09078b3881bd30e0b6 (patch) | |
tree | 152cbe22982ceb3fcc7cef9d6832d86e022f5084 /gitautodeploy/parsers/bitbucket.py | |
parent | 949dc77616ac9de4a768f08e32f0d1a3e5826059 (diff) | |
download | Git-Auto-Deploy-93e6541a72e9f57964ea7a09078b3881bd30e0b6.zip Git-Auto-Deploy-93e6541a72e9f57964ea7a09078b3881bd30e0b6.tar.gz Git-Auto-Deploy-93e6541a72e9f57964ea7a09078b3881bd30e0b6.tar.bz2 |
Pass repo urls from request parsers
Diffstat (limited to 'gitautodeploy/parsers/bitbucket.py')
-rw-r--r-- | gitautodeploy/parsers/bitbucket.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gitautodeploy/parsers/bitbucket.py b/gitautodeploy/parsers/bitbucket.py index 791b491..d1dc095 100644 --- a/gitautodeploy/parsers/bitbucket.py +++ b/gitautodeploy/parsers/bitbucket.py @@ -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 |