Skip to content
Snippets Groups Projects
Unverified Commit d98133a9 authored by Ayub's avatar Ayub Committed by GitHub
Browse files

Merge pull request #21071 from edx/INCR-407

INCR-407 python3 compatibility
parents 829855f6 07275a57
No related branches found
No related tags found
No related merge requests found
......@@ -3,6 +3,8 @@ Management command `manage_user` is used to idempotently create or remove
Django users, set/unset permission bits, and associate groups by name.
"""
from __future__ import absolute_import
from django.contrib.auth import get_user_model
from django.contrib.auth.hashers import is_password_usable
from django.contrib.auth.models import Group
......
from __future__ import print_function
from __future__ import absolute_import, print_function
import re
from django.contrib.auth.models import User
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment