win32: Fix python 3.4 check in installer

This commit is contained in:
TingPing 2014-04-08 20:17:04 -04:00
parent b41bd594b0
commit f994ef3f92
1 changed files with 1 additions and 1 deletions

View File

@ -279,7 +279,7 @@ begin
if IsComponentSelected('langs\python\python2') and not CheckDLL('python27.dll') then
idpAddFile(PY2, ExpandConstant('{tmp}\python.msi'));
if IsComponentSelected('langs\python\python3') and not CheckDLL('python33.dll') then
if IsComponentSelected('langs\python\python3') and not CheckDLL('python34.dll') then
idpAddFile(PY3, ExpandConstant('{tmp}\python.msi'));
end;
end;