mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
update community path location for new repo layout
This commit is contained in:
@@ -150,7 +150,11 @@ public abstract class PyTestCase extends UsefulTestCase {
|
||||
}
|
||||
|
||||
public static String getPythonCommunityPath() {
|
||||
return new File(PathManager.getHomePath(), "python/community").getPath();
|
||||
File pathFromUltimate = new File(PathManager.getHomePath(), "community/python");
|
||||
if (pathFromUltimate.exists()) {
|
||||
return pathFromUltimate.getPath();
|
||||
}
|
||||
return new File(PathManager.getHomePath(), "python").getPath();
|
||||
}
|
||||
|
||||
public static String getHelpersPath() {
|
||||
|
||||
Reference in New Issue
Block a user