~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/urlutils.py

  • Committer: Jelmer Vernooij
  • Date: 2011-08-10 23:27:14 UTC
  • mto: (5268.7.8 transport-segments)
  • mto: This revision was merged to the branch mainline in revision 6062.
  • Revision ID: jelmer@samba.org-20110810232714-ifyj77n3sc251b7f
Fix tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
761
761
                self.path == other.path)
762
762
 
763
763
    def __repr__(self):
764
 
        return "<%s(%r,%r,%r,%r,%r)>" % (
 
764
        return "<%s(%r, %r, %r, %r, %r, %r)>" % (
765
765
            self.__class__.__name__,
766
 
            self.scheme, self.quoted_host, self.quoted_user,
767
 
            self.quoted_password, self.port, self.quoted_path)
 
766
            self.scheme, self.quoted_user, self.quoted_password,
 
767
            self.quoted_host, self.port, self.quoted_path)
768
768
 
769
769
    @classmethod
770
770
    def from_string(cls, url):