changeset 2313:a600d9997521

Fixed typo (qshell instead of shell) in win98 code (see issue244).
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 19 May 2006 06:10:59 +0200
parents 4f04368423ec
children e9b5749e4de3
files mercurial/util_win32.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/mercurial/util_win32.py	Thu May 18 16:49:45 2006 -0700
+++ b/mercurial/util_win32.py	Fri May 19 06:10:59 2006 +0200
@@ -194,7 +194,7 @@
         # We are on win < nt: fetch the APPDATA directory location and use
         # the parent directory as the user home dir.
         appdir = shell.SHGetPathFromIDList(
-            qshell.SHGetSpecialFolderLocation(0, shellcon.CSIDL_APPDATA))
+            shell.SHGetSpecialFolderLocation(0, shellcon.CSIDL_APPDATA))
         userdir = os.path.dirname(appdir)
     return os.path.join(userdir, 'mercurial.ini')