~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/builtins.py

  • Committer: Aaron Bentley
  • Date: 2006-03-28 20:53:12 UTC
  • mto: (1634.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 1635.
  • Revision ID: abentley@panoramicfeedback.com-20060328205312-914ba2c0e85bda7c
Handle lockdirs over NFS properly

Show diffs side-by-side

added added

removed removed

Lines of Context:
1634
1634
        if typestring == "memory":
1635
1635
            from bzrlib.transport.memory import MemoryServer
1636
1636
            return MemoryServer
 
1637
        if typestring == "fakenfs":
 
1638
            from bzrlib.transport.memory import FakeNFSServer
 
1639
            return FakeNFSServer
1637
1640
        msg = "No known transport type %s. Supported types are: sftp\n" %\
1638
1641
            (typestring)
1639
1642
        raise BzrCommandError(msg)