Skip to content

Commit

Permalink
fix problem with url and bump to versio 0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitguigal committed Jun 16, 2016
1 parent 2954a7f commit c85c1c8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.1.5"
__version__ = "0.1.6"

token = None
api_base = 'https://api.figuredevices.com'
Expand Down
2 changes: 1 addition & 1 deletion figure/resource.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,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
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def get_version(package):
# The project's main homepage.
url='https://github.com/Postcard/figure-sdk-python',

download_url='https://github.com/Postcard/figure-sdk-python/archive/v0.1.5.tar.gz',
download_url='https://github.com/Postcard/figure-sdk-python/archive/v0.1.6.tar.gz',

# Author details
author='Figure',
Expand Down

0 comments on commit c85c1c8

Please sign in to comment.