Gregor Volkmann

Results 5 comments of Gregor Volkmann

Hey @gdubicki, could you install it another way?

Ran into this problem again today. Thanks for the hint, it works. But I think you have forgotten to replace `model_class` with `Placement`. A more general example: ``` ModelClass =...

setting a backend with `user = authenticate(request, username=username, password=raw_password, backend='django.contrib.auth.backends.ModelBackend')` throws `'unicode' object has no attribute 'name'`. /Users/Gregor/.local/share/virtualenvs/###/lib/python2.7/site-packages/social_core/backends/base.py in authenticate `if 'backend' not in kwargs or kwargs['backend'].name != self.name or...

@omab, correct! Solved it by dropping authenticate() and taking the user from my form: ``` if form.is_valid(): user = form.save() login(request, user, backend='django.contrib.auth.backends.ModelBackend') ```