mercurial/windows.py
changeset 35514 2062f7c2ac83
parent 35513 beede158ea8a
child 35517 c4caf530b1c7
--- a/mercurial/windows.py	Sat Dec 30 21:07:03 2017 -0500
+++ b/mercurial/windows.py	Fri Dec 29 21:28:19 2017 -0500
@@ -32,6 +32,7 @@
 osutil = policy.importmod(r'osutil')
 
 executablepath = win32.executablepath
+getfstype = win32.getfstype
 getuser = win32.getuser
 hidewindow = win32.hidewindow
 makedir = win32.makedir
@@ -226,13 +227,6 @@
 def checklink(path):
     return False
 
-def getfstype(dirpath):
-    '''Get the filesystem type name from a directory (best-effort)
-
-    Returns None if we are unsure. Raises OSError on ENOENT, EPERM, etc.
-    '''
-    return None
-
 def setbinary(fd):
     # When run without console, pipes may expose invalid
     # fileno(), usually set to -1.