Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bitbucket/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
__version__ = '0.5.4'
__version__ = '0.5.5+bitsight'

__doc__ = """
Bitbucket has a REST API publicly available, this package provide methods to interact with it.
Expand Down
4 changes: 2 additions & 2 deletions bitbucket/bitbucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@
# = URLs =
# ========
URLS = {
'BASE': 'https://bitbucket.org/!api/1.0/%s',
'BASE_V2': 'https://bitbucket.org/!api/2.0/%s',
'BASE': 'https://api.bitbucket.org/1.0/%s',
'BASE_V2': 'https://api.bitbucket.org/2.0/%s',
'BASE_APIv2': 'https://api.bitbucket.org/2.0/%s',
# Get user profile and repos
'GET_USER': 'users/%(username)s/',
Expand Down