Skip to content

Commit

Permalink
fix: hotfix generate password
Browse files Browse the repository at this point in the history
  • Loading branch information
johanseto committed Jul 22, 2024
1 parent b657b30 commit ffea89b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lms/djangoapps/support/views/manage_user.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
from openedx.core.djangoapps.user_api.accounts.serializers import AccountUserSerializer
from openedx.core.djangolib.oauth2_retirement_utils import retire_dot_oauth2_models

from edx_django_utils.user import generate_password # lint-amnesty, pylint: disable=wrong-import-order
from eox_nelp.user_authn.utils import generate_password # lint-amnesty, pylint: disable=wrong-import-order


class ManageUserSupportView(View):
Expand Down
2 changes: 1 addition & 1 deletion openedx/core/djangoapps/user_authn/views/auto_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
)
from common.djangoapps.util.json_request import JsonResponse

from edx_django_utils.user import generate_password # lint-amnesty, pylint: disable=wrong-import-order
from eox_nelp.user_authn.utils import generate_password # lint-amnesty, pylint: disable=wrong-import-order


def auto_auth(request): # pylint: disable=too-many-statements
Expand Down
2 changes: 1 addition & 1 deletion openedx/core/djangoapps/user_authn/views/register.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
from common.djangoapps.util.db import outer_atomic
from common.djangoapps.util.json_request import JsonResponse

from edx_django_utils.user import generate_password # lint-amnesty, pylint: disable=wrong-import-order
from eox_nelp.user_authn.utils import generate_password # lint-amnesty, pylint: disable=wrong-import-order

log = logging.getLogger("edx.student")
AUDIT_LOG = logging.getLogger("audit")
Expand Down

0 comments on commit ffea89b

Please sign in to comment.