Skip to content

Commit

Permalink
Merge pull request #103 from oktaal/master
Browse files Browse the repository at this point in the history
Import line was too long
  • Loading branch information
brianmay committed Sep 26, 2019
2 parents 737274a + 1d5bb25 commit ac2d948
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion revproxy/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
import urllib3

try:
from django.utils.six.moves.urllib.parse import urlparse, urlencode, quote_plus
from django.utils.six.moves.urllib.parse import (
urlparse, urlencode, quote_plus)
except ImportError:
# Django 3 has no six
from urllib.parse import urlparse, urlencode, quote_plus
Expand Down

0 comments on commit ac2d948

Please sign in to comment.