temp fix for user skeletons path

This commit is contained in:
Dmitry Jemerov
2013-09-27 15:19:28 +02:00
parent 0a69cab05d
commit d39610faa5
@@ -44,7 +44,7 @@ public class PyUserSkeletonsUtil {
final List<String> result = new ArrayList<String>();
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;
}