/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/tests/ftp_server/pyftpdlib_based.py

  • Committer: Jelmer Vernooij
  • Date: 2017-02-05 23:03:41 UTC
  • mto: (6621.2.2 py3)
  • mto: This revision was merged to the branch mainline in revision 6624.
  • Revision ID: jelmer@jelmer.uk-20170205230341-m9v87fyklenponki
Apply 2to3 getcwdu fix.

Show diffs side-by-side

added added

removed removed

Lines of Context:
148
148
            raise AssertionError(
149
149
                "FTPServer currently assumes local transport, got %s"
150
150
                % vfs_server)
151
 
        self._root = os.getcwdu()
 
151
        self._root = os.getcwd()
152
152
 
153
153
        address = ('localhost', 0) # bind to a random port
154
154
        authorizer = AnonymousWithWriteAccessAuthorizer()