66 self.project.pdata["MIXEDLANGUAGE"] = int( |
66 self.project.pdata["MIXEDLANGUAGE"] = int( |
67 self.attribute("mixed", "0") |
67 self.attribute("mixed", "0") |
68 ) |
68 ) |
69 self.project.pdata["PROGLANGUAGE"] = self.readElementText() |
69 self.project.pdata["PROGLANGUAGE"] = self.readElementText() |
70 if self.project.pdata["PROGLANGUAGE"] == "Python": |
70 if self.project.pdata["PROGLANGUAGE"] == "Python": |
71 # convert Python to the more specific Python2 |
71 # convert Python to the more specific Python3 |
72 self.project.pdata["PROGLANGUAGE"] = "Python2" |
72 self.project.pdata["PROGLANGUAGE"] = "Python3" |
73 elif self.name() == "ProjectType": |
73 elif self.name() == "ProjectType": |
74 self.project.pdata["PROJECTTYPE"] = self.readElementText() |
74 self.project.pdata["PROJECTTYPE"] = self.readElementText() |
75 elif self.name() == "Description": |
75 elif self.name() == "Description": |
76 self.project.pdata["DESCRIPTION"] = self.readElementText() |
76 self.project.pdata["DESCRIPTION"] = self.readElementText() |
77 elif self.name() == "Version": |
77 elif self.name() == "Version": |