diff --git a/auth.py b/auth.py index 2057fc7..3d258e6 100644 --- a/auth.py +++ b/auth.py @@ -17,7 +17,7 @@ class DredditAuthBackend: if username and password: # Call the webservice - api_url = 'https://auth.pleaseignore.com/api/login/' + api_url = 'https://auth.pleaseignore.com/api/1.0/login/' params = { 'user': username, 'pass': sha1(password).hexdigest() } try: raw = urllib2.urlopen('%s?%s' % (api_url, urllib.urlencode(params)))