/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to breezy/git/urls.py

  • Committer: Jelmer Vernooij
  • Date: 2018-11-11 04:08:32 UTC
  • mto: (7143.16.20 even-more-cleanups)
  • mto: This revision was merged to the branch mainline in revision 7175.
  • Revision ID: jelmer@jelmer.uk-20181111040832-nsljjynzzwmznf3h
Run autopep8.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
            return location
36
36
        else:
37
37
            url = URL(
38
 
                    scheme='git+ssh',
39
 
                    quoted_user=(quote(username) if username else None),
40
 
                    quoted_password=None,
41
 
                    quoted_host=quote(host),
42
 
                    port=None,
43
 
                    quoted_path=quote(path, safe="/~"))
 
38
                scheme='git+ssh',
 
39
                quoted_user=(quote(username) if username else None),
 
40
                quoted_password=None,
 
41
                quoted_host=quote(host),
 
42
                port=None,
 
43
                quoted_path=quote(path, safe="/~"))
44
44
        return str(url)
45
45
    else:
46
46
        return location