AssistantEric/APIsManager.py

changeset 59
2b361d34d241
parent 54
89d28458ff40
child 61
b88fd1352be6
equal deleted inserted replaced
58:0283a7b6f342 59:2b361d34d241
9 9
10 import os 10 import os
11 11
12 from PyQt4.QtCore import QTimer, QThread, QFileInfo, pyqtSignal, QCoreApplication, \ 12 from PyQt4.QtCore import QTimer, QThread, QFileInfo, pyqtSignal, QCoreApplication, \
13 QEvent, QDateTime, QObject, Qt 13 QEvent, QDateTime, QObject, Qt
14 from PyQt4.QtSql import QSqlDatabase, QSqlQuery 14 try:
15 from PyQt4.QtSql import QSqlDatabase, QSqlQuery
16 except ImportError:
17 # just ignore it because the main plug-in file will deal with it
18 pass
15 19
16 from E5Gui.E5Application import e5App 20 from E5Gui.E5Application import e5App
17 21
18 import QScintilla.Lexers 22 import QScintilla.Lexers
19 from QScintilla.Editor import Editor 23 from QScintilla.Editor import Editor

eric ide

mercurial