Skip to content

Commit 46c36a9

Browse files
committed
typo error: system doesn't exists use sys instead
1 parent c7ea8df commit 46c36a9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

InstagramAPI/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ def getUserFollowings(self, usernameId, maxid = ''):
543543
}
544544
if maxid:
545545
query_string['max_id'] = maxid
546-
if system.version_info.major == 3:
546+
if sys.version_info.major == 3:
547547
url += urllib.parse.urlencode(query_string)
548548
else:
549549
url += urllib.urlencode(query_string)

0 commit comments

Comments
 (0)