diff --git a/python/src/com/jetbrains/python/codeInsight/userSkeletons/PyUserSkeletonsUtil.java b/python/src/com/jetbrains/python/codeInsight/userSkeletons/PyUserSkeletonsUtil.java index c0d3eab0fe3d..87b8bcad0c06 100644 --- a/python/src/com/jetbrains/python/codeInsight/userSkeletons/PyUserSkeletonsUtil.java +++ b/python/src/com/jetbrains/python/codeInsight/userSkeletons/PyUserSkeletonsUtil.java @@ -44,7 +44,7 @@ public class PyUserSkeletonsUtil { final List result = new ArrayList(); result.add(PathManager.getConfigPath() + File.separator + USER_SKELETONS_DIR); result.add(ApplicationManager.getApplication().isInternal() - ? StringUtil.join(new String[]{PathManager.getHomePath(), "python", "helpers", USER_SKELETONS_DIR}, File.separator) + ? StringUtil.join(new String[]{PathManager.getHomePath(), "community", "python", "helpers", USER_SKELETONS_DIR}, File.separator) : PythonHelpersLocator.getHelperPath(USER_SKELETONS_DIR)); return result; }