~ubuntu-branches/ubuntu/karmic/python-boto/karmic

« back to all changes in this revision

Viewing changes to boto/s3/bucket.py

  • Committer: Bazaar Package Importer
  • Author(s): Eric Evans
  • Date: 2007-11-24 17:12:40 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20071124171240-11841t56xlqco4pw
Tags: 0.9d-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
            path = path + '?%s' % s
149
149
        response = self.connection.make_request('GET', path, headers)
150
150
        body = response.read()
 
151
        if self.connection.debug > 1:
 
152
            print body
151
153
        if response.status == 200:
152
154
            rs = ResultSet([('Contents', self.key_class),
153
155
                            ('CommonPrefixes', Prefix)])