From 8830c81db7cd86f983e09cf1f4b8705930184bd4 Mon Sep 17 00:00:00 2001 From: Chmouel Boudjnah Date: Mon, 14 Apr 2014 10:59:26 -0400 Subject: [PATCH] Use quote/unquote from six module for py3 Change-Id: I42cff32fbf3febd6dd6a7171b9214f93b4414f9a --- swiftclient/shell.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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