From b23a8788c17e7d2087c725571a87730f0df860a1 Mon Sep 17 00:00:00 2001 From: Erik Johnson Date: Thu, 26 Feb 2015 00:23:26 -0600 Subject: [PATCH] Add imp to windows freezer_includes Got an ImportError on this line when I was testing on Windows. https://github.com/terminalmage/salt/blob/43e15d8/salt/loader.py#L624 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 6a36ff0ae99..af19d986133 100755 --- a/setup.py +++ b/setup.py @@ -849,6 +849,7 @@ class SaltDistribution(distutils.dist.Distribution): if IS_WINDOWS_PLATFORM: freezer_includes.extend([ + 'imp', 'win32api', 'win32file', 'win32con',