diff options
author | Alexander Nestorov <alexandernst@gmail.com> | 2014-11-20 10:53:04 +0100 |
---|---|---|
committer | Alexander Nestorov <alexandernst@gmail.com> | 2014-11-20 10:53:04 +0100 |
commit | 5e8234b7a161d49ef7c0704a9877b3b8b3c29151 (patch) | |
tree | 994eea56fb7c8e868cb25d8ab04cdb6c8f93af89 /GitAutoDeploy.py | |
parent | 2ab5c88c9e287a9e21153726dbcaa4556a78c399 (diff) | |
download | Git-Auto-Deploy-5e8234b7a161d49ef7c0704a9877b3b8b3c29151.zip Git-Auto-Deploy-5e8234b7a161d49ef7c0704a9877b3b8b3c29151.tar.gz Git-Auto-Deploy-5e8234b7a161d49ef7c0704a9877b3b8b3c29151.tar.bz2 |
Fix invalid syntax
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": |