Skip to content

Commit c85c1c8

Browse files
committed
fix problem with url and bump to versio 0.1.6
1 parent 2954a7f commit c85c1c8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

figure/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22

3-
__version__ = "0.1.5"
3+
__version__ = "0.1.6"
44

55
token = None
66
api_base = 'https://api.figuredevices.com'

figure/resource.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ def get_all_public(cls, token=None, **params):
132132
@classmethod
133133
def photoshop_hook(cls, code, token=None, **params):
134134
requestor = api_requestor.APIRequestor(token)
135-
url = '%s/%s' % (cls.instance_url(code), 'photoshop-hook')
135+
url = '%s%s' % (cls.instance_url(code), 'photoshop-hook')
136136
return requestor.request('post', url, **params)
137137

138138

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def get_version(package):
3131
# The project's main homepage.
3232
url='https://github.com/Postcard/figure-sdk-python',
3333

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

3636
# Author details
3737
author='Figure',

0 commit comments

Comments
 (0)