Skip to content

Commit

Permalink
fix _encode_multipart bug
Browse files Browse the repository at this point in the history
_encode_multipart add self param
  • Loading branch information
gusibi committed Feb 15, 2015
1 parent e885e7d commit 87dc812
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instagram/oauth2.py
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ def _auth_query(self, include_secret=False):
def _post_body(self, params):
return urlencode(params)

def _encode_multipart(params, files):
def _encode_multipart(self, params, files):
boundary = "MuL7Ip4rt80uND4rYF0o"

def get_content_type(file_name):
Expand Down

0 comments on commit 87dc812

Please sign in to comment.