Skip to content

Commit

Permalink
Python2: Use six.moves.urllib
Browse files Browse the repository at this point in the history
  • Loading branch information
madscientist committed Jul 23, 2023
1 parent f026a00 commit ebf7099
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from ..base import BitbucketCloudBase

from urllib.parse import urlunsplit, urlsplit
from six.moves.urllib.parse import urlunsplit, urlsplit


class DeploymentEnvironments(BitbucketCloudBase):
Expand Down
3 changes: 2 additions & 1 deletion examples/jira/jira_project_leaders.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# coding=utf-8
from urllib.parse import quote

from six.moves.urllib.parse import quote

from atlassian import Jira

Expand Down

0 comments on commit ebf7099

Please sign in to comment.