Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion ari/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,10 @@

import json
import logging
import urlparse
try:
import urlparse
except ImportError:
import urllib.parse as urlparse
import swaggerpy.client

from ari.model import *
Expand Down