~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/transport/local.py

  • Committer: Robert Collins
  • Date: 2005-10-27 19:45:18 UTC
  • mfrom: (1185.16.130)
  • Revision ID: robertc@robertcollins.net-20051027194518-58afabc9ab280bb0
MergeĀ fromĀ Martin

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        """Return the full url to the given relative URL.
64
64
        This can be supplied with a string or a list
65
65
        """
66
 
        assert isinstance(relpath, basestring)
 
66
        assert isinstance(relpath, basestring), (type(relpath), relpath)
67
67
        return os.path.join(self.base, urllib.unquote(relpath))
68
68
 
69
69
    def relpath(self, abspath):