]> git.parisson.com Git - django-social-auth.git/commitdiff
Endline spaces and unused import cleanup
authorMatías Aguirre <matiasaguirre@gmail.com>
Thu, 19 May 2011 15:23:22 +0000 (12:23 -0300)
committerMatías Aguirre <matiasaguirre@gmail.com>
Thu, 19 May 2011 15:23:22 +0000 (12:23 -0300)
contrib/models.py
example/urls.py
social_auth/tests/base.py

index 71a836239075aa6e6e4ecb700e9c42c95c022d91..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,3 +0,0 @@
-from django.db import models
-
-# Create your models here.
index d8d250b11a8d7c6519433defe13789ce61a8e6e7..bcede4173ae7d1d6c63f18fb46a373658135f6e6 100644 (file)
@@ -7,10 +7,10 @@ from app.views import home, done, logout, error
 admin.autodiscover()
 
 urlpatterns = patterns('',
-    url(r'^$', home, name='home'), 
-    url(r'^done/$', done, name='done'), 
+    url(r'^$', home, name='home'),
+    url(r'^done/$', done, name='done'),
     url(r'^error/$', error, name='error'),
-    url(r'^logout/$', logout, name='logout'), 
+    url(r'^logout/$', logout, name='logout'),
     url(r'^admin/', include(admin.site.urls)),
     url(r'', include('social_auth.urls')),
 )
index f88cd877766d429c729a22b325e5581f36ed466a..0120a2a7e7b274601fc7bdccbc77a7bfeb6e9e3b 100644 (file)
@@ -89,7 +89,7 @@ class FormParser(CustomParser):
         attrs = dict(attributes)
         if self.in_form(attrs):
             # flag that we are inside the form and save action
-            self.inside_form = True 
+            self.inside_form = True
             self.action = attrs.get('action')
 
     def in_form(self, attrs):