X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=auth%2Fmanifoldbackend.py;fp=auth%2Fmanifold_backend.py;h=f548b4340a6ea16f74292481ae438ca5c91e2f8b;hb=a222cef0a10a5517349f05cea0e382b35e3a14a6;hp=67ab89f4e713f5836e3cd5cdc8d46d67f9ae550e;hpb=6373f4c6f48b4a2e049372ad6c6dd4adf9c95b69;p=myslice.git diff --git a/auth/manifold_backend.py b/auth/manifoldbackend.py similarity index 96% rename from auth/manifold_backend.py rename to auth/manifoldbackend.py index 67ab89f4..f548b434 100644 --- a/auth/manifold_backend.py +++ b/auth/manifoldbackend.py @@ -1,6 +1,6 @@ # import the User object from django.contrib.auth.models import User -from engine.manifold_api import ManifoldAPI +from engine.manifoldapi import ManifoldAPI # import time - this is used to create Django's internal username @@ -14,7 +14,6 @@ class ManifoldBackend: def authenticate(self, username=None, password=None): if not username or not password: return None - print username try: auth = {'AuthMethod': 'password', 'Username': username, 'AuthString': password}