Skip to content

Commit

Permalink
Replace django urlquote with urllib.parse.quote
Browse files Browse the repository at this point in the history
  • Loading branch information
hmpf committed Mar 1, 2024
1 parent 8f46181 commit 71c5bdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/nav/web/webfront/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import json
import logging
from operator import attrgetter
from urllib.parse import quote as urlquote

from django.http import (
HttpResponseForbidden,
Expand All @@ -32,7 +33,6 @@
from django.views.decorators.debug import sensitive_variables, sensitive_post_parameters
from django.shortcuts import get_object_or_404, render
from django.urls import reverse
from django.utils.http import urlquote

from nav.auditlog.models import LogEntry
from nav.django.utils import get_account
Expand Down

0 comments on commit 71c5bdc

Please sign in to comment.