summaryrefslogtreecommitdiff
path: root/boto
diff options
context:
space:
mode:
authorKonstantinos Koukopoulos <koukopoulos@gmail.com>2014-08-26 17:44:51 +0300
committerKonstantinos Koukopoulos <koukopoulos@gmail.com>2014-08-26 17:44:51 +0300
commita544fb7d53aa09489cf237ffdce76c595e2732ba (patch)
treece4da7e9c494d26cb7d9070e87cf9e650e63a441 /boto
parent73783292f1284ef56c9068f10d710d2786600117 (diff)
downloadboto-a544fb7d53aa09489cf237ffdce76c595e2732ba.tar.gz
remove forgotten pdb invocation.
Diffstat (limited to 'boto')
-rw-r--r--boto/s3/bucketlistresultset.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/boto/s3/bucketlistresultset.py b/boto/s3/bucketlistresultset.py
index ab9c65e4..bab30586 100644
--- a/boto/s3/bucketlistresultset.py
+++ b/boto/s3/bucketlistresultset.py
@@ -19,7 +19,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
# IN THE SOFTWARE.
-from boto.compat import urllib, six
+import urllib
def bucket_lister(bucket, prefix='', delimiter='', marker='', headers=None,
encoding_type=None):
@@ -37,9 +37,9 @@ def bucket_lister(bucket, prefix='', delimiter='', marker='', headers=None,
if k:
marker = rs.next_marker or k.name
if marker and encoding_type == "url":
- if isinstance(marker, six.text_type):
+ if isinstance(marker, unicode):
marker = marker.encode('utf-8')
- marker = urllib.parse.unquote(marker)
+ marker = urllib.unquote(marker)
more_results= rs.is_truncated
class BucketListResultSet(object):