7 Module implementing the handler class for reading an XML project file. |
7 Module implementing the handler class for reading an XML project file. |
8 """ |
8 """ |
9 |
9 |
10 import os |
10 import os |
11 |
11 |
12 from Config import projectFileFormatVersion |
12 from .Config import projectFileFormatVersion |
13 from XMLHandlerBase import XMLHandlerBase |
13 from .XMLHandlerBase import XMLHandlerBase |
14 |
14 |
15 import Utilities |
15 import Utilities |
16 |
16 |
17 class ProjectHandler(XMLHandlerBase): |
17 class ProjectHandler(XMLHandlerBase): |
18 """ |
18 """ |