diff options
| author | Chmouel Boudjnah <chmouel@enovance.com> | 2014-04-14 10:59:26 -0400 |
|---|---|---|
| committer | Chmouel Boudjnah <chmouel@enovance.com> | 2014-04-17 12:04:43 -0400 |
| commit | 8830c81db7cd86f983e09cf1f4b8705930184bd4 (patch) | |
| tree | 8617db52f90cc88dcda011df5583e0325eb20fa4 /swiftclient/shell.py | |
| parent | fa20e7f6850a4793f8fb18400263269c24eda2ed (diff) | |
| download | python-swiftclient-8830c81db7cd86f983e09cf1f4b8705930184bd4.tar.gz | |
Use quote/unquote from six module for py3
Change-Id: I42cff32fbf3febd6dd6a7171b9214f93b4414f9a
Diffstat (limited to 'swiftclient/shell.py')
| -rwxr-xr-x | swiftclient/shell.py | 2 |
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 |
