~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-09-01 17:29:56 UTC
  • mfrom: (1711.9.14 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060901172956-71246cfb9bf153f8
(vila) cleanup http changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
175
175
            if relpath_parts[0] == '':
176
176
                raise ValueError("path %r within branch %r seems to be absolute"
177
177
                                 % (relpath, self._path))
178
 
            # read only transports never manipulate directories
 
178
            # read only transports never manipulate directories
179
179
            if self.is_readonly() and relpath_parts[-1] == '':
180
180
                raise ValueError("path %r within branch %r seems to be a directory"
181
181
                                 % (relpath, self._path))