~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-10-31 14:11:02 UTC
  • mfrom: (2954.1.1 trunk)
  • Revision ID: pqm@pqm.ubuntu.com-20071031141102-b5664t8izotfnc6h
Fix typo (is_permament => is_permanent) reported on IRC

Show diffs side-by-side

added added

removed removed

Lines of Context:
312
312
            redirected_to = headers['Location']
313
313
            raise errors.RedirectRequested(url,
314
314
                                           redirected_to,
315
 
                                           is_permament=(code == 301),
 
315
                                           is_permanent=(code == 301),
316
316
                                           qual_proto=self._scheme)
317
317
 
318
318