~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_directory_service.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-06-03 03:18:53 UTC
  • mfrom: (5278.1.5 gnuness)
  • Revision ID: pqm@pqm.ubuntu.com-20100603031853-rzypooksqjaonb9m
(mbp) avoid inaccurate use of "linux" or non-gnu-compliant "open source"
 (Martin Pool)

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
class FooService(object):
29
29
    """A directory service that maps the name to a FILE url"""
30
30
 
31
 
    # eg 'file:///foo' on Linux, or 'file:///C:/foo' on Windows
 
31
    # eg 'file:///foo' on Unix, or 'file:///C:/foo' on Windows
32
32
    base = urlutils.local_path_to_url('/foo')
33
33
 
34
34
    def look_up(self, name, url):