diff --git a/instagram/models.py b/instagram/models.py index 06982b5e..e64dc6f8 100644 --- a/instagram/models.py +++ b/instagram/models.py @@ -28,7 +28,7 @@ def __str__(self): class Image(ApiModel): - def __init__(self, url, width, height): + def __init__(self, url, width, height, **kwargs): self.url = url self.height = height self.width = width diff --git a/setup.py b/setup.py index 4849feaf..e4a0396e 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, find_packages setup(name="python-instagram", - version="1.3.2.1", + version="1.3.2.2", description="Instagram API client", license="MIT", install_requires=["simplejson","httplib2","six"],