changeset 7932:96501a4abbec

windows: fix import of win32.py (was util_win32.py)
author Sune Foldager <cryo@cyanite.org>
date Thu, 02 Apr 2009 16:49:34 +0200
parents 026bcd12a0ad
children 5325596c354c
files mercurial/windows.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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: