From 31efb0c7cfb558d4ed393e2f56d6673112970843 Mon Sep 17 00:00:00 2001 From: Mike Helmick Date: Fri, 7 Jun 2013 15:27:10 -0400 Subject: [PATCH] Fix verify_credentials definition name [ci skip] --- twython/endpoints.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twython/endpoints.py b/twython/endpoints.py index 41151d4..d8ede51 100644 --- a/twython/endpoints.py +++ b/twython/endpoints.py @@ -297,7 +297,7 @@ class EndpointsMixin(object): """ return self.get('account/settings', params=params) - def verify_Credentials(self, **params): + def verify_credentials(self, **params): """Returns an HTTP 200 OK response code and a representation of the requesting user if authentication was successful; returns a 401 status code and an error message if not.