From da6ce0a18bfdd205917189fab93a17829092fc12 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Tue, 12 Apr 2011 10:09:33 +0100 Subject: [PATCH] Updated API url --- auth.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auth.py b/auth.py index 4647eda..f803c1b 100644 --- a/auth.py +++ b/auth.py @@ -17,7 +17,7 @@ class DredditAuthBackend: if username and password: # Call the webservice - api_url = 'https://auth.dredd.it/api/login/' + api_url = 'https://auth.pleaseignore.com/api/login/' params = { 'user': username, 'pass': sha1(password).hexdigest() } try: raw = urllib2.urlopen('%s?%s' % (api_url, urllib.urlencode(params)))