diff options
author | TingPing <TingPing@users.noreply.github.com> | 2014-04-08 20:17:04 -0400 |
---|---|---|
committer | TingPing <TingPing@users.noreply.github.com> | 2014-04-08 20:17:04 -0400 |
commit | f994ef3f92ac5eed2c6c6add60e12b1b6a9a9cb8 (patch) | |
tree | e93d08adcd05bd3431aaf05cf4f1b2cd9809c9e9 /win32 | |
parent | b41bd594b0324c4aa0d02ec35ad1efdcf2d4f6db (diff) |
win32: Fix python 3.4 check in installer
Diffstat (limited to 'win32')
-rw-r--r-- | win32/installer/hexchat.iss.tt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/installer/hexchat.iss.tt b/win32/installer/hexchat.iss.tt index 05a59ec0..8ff2c1fc 100644 --- a/win32/installer/hexchat.iss.tt +++ b/win32/installer/hexchat.iss.tt @@ -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; |