Skip to content
Merged
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 pipedrive/webhooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ def __init__(self, client):

def get_hooks_subscription(self, **kwargs):
url = "webhooks"
return self._client._get(url, **kwargs)
return self._client._get(self._client.BASE_URL + url, **kwargs)

def create_hook_subscription(self, subscription_url, event_action, event_object, **kwargs):
url = "webhooks"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ def read(fname):


setup(name='pipedrive-python-lib',
version='1.1.4',
version='1.1.5',
description='API wrapper for Pipedrive written in Python',
long_description=read('README.md'),
long_description_content_type="text/markdown",
Expand Down