~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-04-04 01:10:55 UTC
  • mfrom: (1634.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20060404011055-cc6bc217328f4055
Merge NFS LockDir support (Aaron Bentley, Robert Collins).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1656
1656
        if typestring == "memory":
1657
1657
            from bzrlib.transport.memory import MemoryServer
1658
1658
            return MemoryServer
 
1659
        if typestring == "fakenfs":
 
1660
            from bzrlib.transport.fakenfs import FakeNFSServer
 
1661
            return FakeNFSServer
1659
1662
        msg = "No known transport type %s. Supported types are: sftp\n" %\
1660
1663
            (typestring)
1661
1664
        raise BzrCommandError(msg)