5 |
5 |
6 """ |
6 """ |
7 Module implementing the Django tags menu handler. |
7 Module implementing the Django tags menu handler. |
8 """ |
8 """ |
9 |
9 |
|
10 import datetime |
10 import os |
11 import os |
11 import datetime |
|
12 |
12 |
13 from PyQt6.QtCore import QObject |
13 from PyQt6.QtCore import QObject |
14 from PyQt6.QtWidgets import QMenu, QInputDialog, QDialog, QApplication |
14 from PyQt6.QtWidgets import QMenu, QInputDialog, QDialog, QApplication |
15 |
15 |
16 from EricWidgets.EricApplication import ericApp |
16 from eric7 import Utilities |
17 from EricWidgets import EricFileDialog, EricMessageBox |
17 from eric7.EricWidgets import EricFileDialog, EricMessageBox |
|
18 from eric7.EricWidgets.EricApplication import ericApp |
18 |
19 |
19 from .DjangoTagInputDialog import DjangoTagInputDialog |
20 from .DjangoTagInputDialog import DjangoTagInputDialog |
20 |
|
21 import Utilities |
|
22 |
21 |
23 |
22 |
24 class DjangoTagsMenuHandler(QObject): |
23 class DjangoTagsMenuHandler(QObject): |
25 """ |
24 """ |
26 Class implementing the Django tags menu handler. |
25 Class implementing the Django tags menu handler. |