~alecu/ubuntuone-client/proxy-tunnel-cookies

« back to all changes in this revision

Viewing changes to ubuntuone/proxy/common.py

  • Committer: Alejandro J. Cura
  • Date: 2012-03-15 22:36:13 UTC
  • Revision ID: alecu@canonical.com-20120315223613-affoyq58py9g2npz
double pass using proxy credentials from settings and keyring

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
    def format_headers(self, headers):
57
57
        """Format some headers as a few response lines."""
58
58
        return "".join("%s: %s" % item + CRLF for item in headers.items())
59
 
 
60