88 def endProjectFile(self): |
88 def endProjectFile(self): |
89 """ |
89 """ |
90 Handler method for the "ProjectFile" end tag. |
90 Handler method for the "ProjectFile" end tag. |
91 """ |
91 """ |
92 filename = self.utf8_to_code(self.buffer) |
92 filename = self.utf8_to_code(self.buffer) |
93 self.project["file"] = unicode(Utilities.toNativeSeparators(filename)) |
93 self.project["file"] = Utilities.toNativeSeparators(filename) |
94 |
94 |
95 def endProjectDescription(self): |
95 def endProjectDescription(self): |
96 """ |
96 """ |
97 Handler method for the "ProjectDescription" end tag. |
97 Handler method for the "ProjectDescription" end tag. |
98 """ |
98 """ |