Chromium Code Reviews| Index: boto/mashups/iobject.py |
| diff --git a/boto/mashups/iobject.py b/boto/mashups/iobject.py |
| index a226b5ca6af3afdc85e093bba5697ce69828269f..de74287bc575ad1b11bfc399e63180092dc42bdf 100644 |
| --- a/boto/mashups/iobject.py |
| +++ b/boto/mashups/iobject.py |
| @@ -40,7 +40,7 @@ class IObject(object): |
| n = 1 |
| choices = [] |
| for item in item_list: |
| - if isinstance(item, str): |
| + if isinstance(item, basestring): |
| print '[%d] %s' % (n, item) |
| choices.append(item) |
| n += 1 |