summaryrefslogtreecommitdiff
path: root/swiftclient/shell.py
diff options
context:
space:
mode:
authorChmouel Boudjnah <chmouel@enovance.com>2014-04-14 10:59:26 -0400
committerChmouel Boudjnah <chmouel@enovance.com>2014-04-17 12:04:43 -0400
commit8830c81db7cd86f983e09cf1f4b8705930184bd4 (patch)
tree8617db52f90cc88dcda011df5583e0325eb20fa4 /swiftclient/shell.py
parentfa20e7f6850a4793f8fb18400263269c24eda2ed (diff)
downloadpython-swiftclient-8830c81db7cd86f983e09cf1f4b8705930184bd4.tar.gz
Use quote/unquote from six module for py3
Change-Id: I42cff32fbf3febd6dd6a7171b9214f93b4414f9a
Diffstat (limited to 'swiftclient/shell.py')
-rwxr-xr-xswiftclient/shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/swiftclient/shell.py b/swiftclient/shell.py
index d7415e1..4e8b195 100755
--- a/swiftclient/shell.py
+++ b/swiftclient/shell.py
@@ -29,7 +29,7 @@ from os.path import dirname, getmtime, getsize, isdir, join, \
from random import shuffle
from sys import argv as sys_argv, exit, stderr, stdout
from time import sleep, time, gmtime, strftime
-from urllib import quote, unquote
+from six.moves.urllib.parse import quote, unquote
try:
import simplejson as json