Skip to content

Commit

Permalink
fix photoshop hook endpoint. Bump to version 0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitguigal committed Mar 28, 2017
1 parent d67f884 commit 6921a85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion figure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@


__version__ = "0.2.0"
__version__ = "0.2.1"

token = None
api_base = 'https://api.figure.co'
Expand Down
2 changes: 1 addition & 1 deletion figure/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def get_all_public(cls, token=None, **params):
@classmethod
def photoshop_hook(cls, code, token=None, **params):
requestor = api_requestor.APIRequestor(token)
url = '%s%s' % (cls.instance_url(code), 'photoshop-hook')
url = '%s%s' % (cls.instance_url(code), 'photoshop_hook')
return requestor.request('post', url, **params)


Expand Down

0 comments on commit 6921a85

Please sign in to comment.