eric7/QScintilla/APIsManager.py

branch
eric7
changeset 8459
0ae07748dbe8
parent 8318
962bce857696
child 8881
54e42bc2437a
equal deleted inserted replaced
8458:d3bedd175c99 8459:0ae07748dbe8
208 @return list of installed API files (list of strings) 208 @return list of installed API files (list of strings)
209 """ 209 """
210 if self.__apis is not None: 210 if self.__apis is not None:
211 if Globals.isWindowsPlatform(): 211 if Globals.isWindowsPlatform():
212 qsciPath = os.path.join( 212 qsciPath = os.path.join(
213 Globals.getPyQt5ModulesDirectory(), "qsci") 213 Globals.getPyQt6ModulesDirectory(), "qsci")
214 if os.path.exists(qsciPath): 214 if os.path.exists(qsciPath):
215 # it's the installer 215 # it's the installer
216 if self.__lexer.lexerName() is not None: 216 if self.__lexer.lexerName() is not None:
217 apidir = os.path.join(qsciPath, "api", 217 apidir = os.path.join(qsciPath, "api",
218 self.__lexer.lexerName()) 218 self.__lexer.lexerName())

eric ide

mercurial