Skip to content

Commit 3ebf3ca

Browse files
author
Tian Chu
authored
Merge pull request #3 from offerpop/fix-video-id
Instagram added an id field for videos.
2 parents f2f90e8 + 0d6e2b3 commit 3ebf3ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

instagram/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def __str__(self):
2828

2929
class Image(ApiModel):
3030

31-
def __init__(self, url, width, height):
31+
def __init__(self, url, width, height, **kwargs):
3232
self.url = url
3333
self.height = height
3434
self.width = width

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from setuptools import setup, find_packages
33

44
setup(name="python-instagram",
5-
version="1.3.2.1",
5+
version="1.3.2.2",
66
description="Instagram API client",
77
license="MIT",
88
install_requires=["simplejson","httplib2","six"],

0 commit comments

Comments
 (0)