Skip to content

Commit

Permalink
PEP 8
Browse files Browse the repository at this point in the history
  • Loading branch information
clsung committed May 26, 2011
1 parent ed3a36a commit bce5f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plurk_oauth/PlurkOAuth.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def get_consumer_token(self):
self.customer_secret = secret self.customer_secret = secret
self.consumer = oauth.Consumer(self.customer_key, self.customer_secret) self.consumer = oauth.Consumer(self.customer_key, self.customer_secret)


def __make_request__(self, requestURL, param = None): def _make_request(self, requestURL, param = None):
request = oauth.Request.from_consumer_and_token(consumer=self.consumer, request = oauth.Request.from_consumer_and_token(consumer=self.consumer,
token=self.token, http_method='POST', token=self.token, http_method='POST',
http_url= requestURL, parameters = param, http_url= requestURL, parameters = param,
Expand Down

0 comments on commit bce5f9a

Please sign in to comment.