~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/http/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2006-07-13 18:33:32 UTC
  • mto: This revision was merged to the branch mainline in revision 1869.
  • Revision ID: john@arbash-meinel.com-20060713183332-8bc576e3eb31efd6
Update and add tests for the HttpTransportBase.range_header

Show diffs side-by-side

added added

removed removed

Lines of Context:
376
376
        if tail_amount:
377
377
            strings.append('-%d' % tail_amount)
378
378
 
379
 
        return 'bytes=' + ', '.join(strings)
 
379
        return 'bytes=' + ','.join(strings)
380
380
 
381
381
 
382
382
#---------------- test server facilities ----------------