Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/configuration/porting_from_dsa.rst
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ paths aren't valid anymore. Some solutions to this problem are:
if session_dict['_auth_user_backend'].startswith('social_auth'):
session_dict['_auth_user_backend'] = BACKENDS[session_dict['_auth_user_backend']]
new_sess = Session.objects.save(sess.session_key, session_dict, sess.expire_date)
print 'New session saved {}'.format(new_sess.pk)
print('New session saved {}'.format(new_sess.pk))


.. _django-social-auth: https://github.com/omab/django-social-auth
Expand Down
6 changes: 2 additions & 4 deletions docs/installing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,8 @@ components are:
Dependencies
------------

Dependencies are properly defined in the requirements files; the
``setup.py`` script will determine the environment where it's
installed and sort between Python 2 or Python 3 packages if
needed. There are some ``extras`` defined to install the corresponding
Dependencies are properly defined in the requirements files.
There are some ``extras`` defined to install the corresponding
dependencies since they are required to build extensions that, unless
used, are undesired.

Expand Down