E4XML/TasksHandler.py

changeset 6
52e8c820d0dd
parent 0
de9c2efb9d02
child 12
1d8dd9706f46
equal deleted inserted replaced
5:fa319c01b604 6:52e8c820d0dd
164 """ 164 """
165 Handler method for the "Filename" end tag. 165 Handler method for the "Filename" end tag.
166 """ 166 """
167 if self.version >= '4.2': 167 if self.version >= '4.2':
168 self.task["filename"] = \ 168 self.task["filename"] = \
169 unicode(Utilities.toNativeSeparators(self.utf8_to_code(self.buffer))) 169 Utilities.toNativeSeparators(self.utf8_to_code(self.buffer))
170 else: 170 else:
171 self.task["filename"] = self.__buildPath() 171 self.task["filename"] = self.__buildPath()
172 172
173 def __buildPath(self): 173 def __buildPath(self):
174 """ 174 """

eric ide

mercurial