Skip to content

Commit f5da3ee

Browse files
committed
Fix py33 support for ST4000 - 4193
1 parent 866766b commit f5da3ee

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

package_control/sys_path.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,8 @@ def lib_paths():
171171
fext = ".exe" if sublime.platform() == "windows" else ""
172172
if os.path.isfile(os.path.join(root, "plugin_host-3.3" + fext)):
173173
lib_paths.cache["3.3"] = os.path.join(__data_path, "Lib", "python33")
174+
elif st_version >= 4000:
175+
lib_paths.cache["3.3"] = os.path.join(__data_path, "Lib", "python33")
174176

175177
return lib_paths.cache
176178

0 commit comments

Comments
 (0)