diff options
Diffstat (limited to 'GitAutoDeploy.py')
-rwxr-xr-x | GitAutoDeploy.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/GitAutoDeploy.py b/GitAutoDeploy.py index 334b8b6..bae734d 100755 --- a/GitAutoDeploy.py +++ b/GitAutoDeploy.py @@ -79,7 +79,7 @@ class GitAutoDeploy(BaseHTTPRequestHandler): elif mode == "bitbucket": for itemString in post['payload']: item = json.loads(itemString) - items.append("ssh://hg@bitbucket.org" + item['repository']['absolute_url'][0:-1])) + items.append("ssh://hg@bitbucket.org" + item['repository']['absolute_url'][0:-1]) # Otherwise, we assume github/bitbucket syntax. elif mode == "gitlab": |