diff mercurial/hook.py @ 14941:4a28cb4df1f8

windows: check util.mainfrozen() instead of ad-hoc checks everywhere
author Augie Fackler <durin42@gmail.com>
date Mon, 25 Jul 2011 16:14:02 -0500
parents 58f97dcbd550
children d3bb825ddae3
line wrap: on
line diff
--- a/mercurial/hook.py	Mon Jul 25 22:19:28 2011 +0300
+++ b/mercurial/hook.py	Mon Jul 25 16:14:02 2011 -0500
@@ -28,7 +28,7 @@
                                'a module)') % (hname, funcname))
         modname = funcname[:d]
         oldpaths = sys.path
-        if hasattr(sys, "frozen"):
+        if util.mainfrozen():
             # binary installs require sys.path manipulation
             modpath, modfile = os.path.split(modname)
             if modpath and modfile: