~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/osutils.py

  • Committer: John Arbash Meinel
  • Date: 2008-07-17 04:49:57 UTC
  • mto: This revision was merged to the branch mainline in revision 3557.
  • Revision ID: john@arbash-meinel.com-20080717044957-xokssio0q76zy0q3
A couple small cleanups, make test_osutils more correct

Show diffs side-by-side

added added

removed removed

Lines of Context:
1283
1283
    Because Win32 has a Unicode api, all of the 'path-from-top' entries will be
1284
1284
    Unicode paths.
1285
1285
    """
1286
 
    from bzrlib._walkdirs_win32 import _walkdirs_utf8_win32_find_file as wd
1287
 
    return wd(top, prefix=prefix)
 
1286
    from bzrlib._walkdirs_win32 import Win32Finder
 
1287
    return Win32Finder(top, prefix=prefix)
1288
1288
 
1289
1289
 
1290
1290
def copy_tree(from_path, to_path, handlers={}):