Skip to content

Commit

Permalink
Rename importing assigned name
Browse files Browse the repository at this point in the history
  • Loading branch information
IKarbowiak committed Nov 27, 2019
1 parent 038b887 commit 71e8de3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions saleor/account/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from django.conf import settings
from django.contrib.admin.views.decorators import (
staff_member_required as _staff_member_required,
staff_member_required as django_staff_member_required,
)
from django.core.files import File

Expand Down Expand Up @@ -120,4 +120,4 @@ def remove_staff_member(staff):


def staff_member_required(f):
return _staff_member_required(f, login_url="account:login")
return django_staff_member_required(f, login_url="account:login")

0 comments on commit 71e8de3

Please sign in to comment.