fix bug 766
[osm/LW-UI.git] / authosm / backend.py
index 9c316a9..b8342eb 100644 (file)
@@ -21,6 +21,7 @@ from .exceptions import OSMAuthException
 
 
 class OsmBackend(object):
+
     def authenticate(self, **kwargs):
         '''
         kwargs will receive the python dict that may contain
@@ -60,3 +61,4 @@ class OsmBackend(object):
             return OsmUser.objects.get(pk=user_id)
         except OsmUser.DoesNotExist:
             return None
+