5 |
5 |
6 """ |
6 """ |
7 Module implementing the handler class for reading an XML tasks file. |
7 Module implementing the handler class for reading an XML tasks file. |
8 """ |
8 """ |
9 |
9 |
10 from Config import pluginRepositoryFileFormatVersion |
10 from .Config import pluginRepositoryFileFormatVersion |
11 from XMLHandlerBase import XMLHandlerBase |
11 from .XMLHandlerBase import XMLHandlerBase |
12 |
12 |
13 import Preferences |
13 import Preferences |
14 |
14 |
15 class PluginRepositoryHandler(XMLHandlerBase): |
15 class PluginRepositoryHandler(XMLHandlerBase): |
16 """ |
16 """ |