/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 breezy/_walkdirs_win32.pyx

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 19:09:26 UTC
  • mfrom: (6622.1.36 breezy)
  • Revision ID: jelmer@jelmer.uk-20170521190926-5vtz8xaf0e9ylrpc
Merge rename to breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
72
72
import os
73
73
import stat
74
74
 
75
 
from bzrlib import _readdir_py
 
75
from breezy import _readdir_py
76
76
 
77
77
cdef object osutils
78
78
osutils = None
187
187
        """See DirReader.top_prefix_to_starting_dir."""
188
188
        global osutils
189
189
        if osutils is None:
190
 
            from bzrlib import osutils
 
190
            from breezy import osutils
191
191
        return (osutils.safe_utf8(prefix), None, None, None,
192
192
                osutils.safe_unicode(top))
193
193