windows: fix import of win32.py (was util_win32.py)
authorSune Foldager <cryo@cyanite.org>
Thu, 02 Apr 2009 16:49:34 +0200
changeset 7932 96501a4abbec
parent 7931 026bcd12a0ad
child 7933 5325596c354c
windows: fix import of win32.py (was util_win32.py)
mercurial/windows.py
--- a/mercurial/windows.py	Tue Mar 31 15:52:48 2009 -0400
+++ b/mercurial/windows.py	Thu Apr 02 16:49:34 2009 +0200
@@ -245,7 +245,7 @@
 posixfile = file
 try:
     # override functions with win32 versions if possible
-    from util_win32 import *
+    from win32 import *
     if not _is_win_9x():
         posixfile = posixfile_nt
 except ImportError: