Remove print statements
offlate/core/manager.py
| 86 | 86 | return False | |
| 87 | 87 | ||
| 88 | 88 | try: | |
| 89 | - | print("a") | |
| 90 | 89 | proj = self.loadProject(name, lang, system, data) | |
| 91 | - | print("a") | |
| 92 | 90 | proj.initialize(projectpath, callback) | |
| 93 | - | print("a") | |
| 94 | 91 | self.projects.append({"name": name, "lang": lang, "system": system, | |
| 95 | 92 | "info": data}) | |
| 96 | 93 | except Exception as e: |
offlate/formats/ts.py
| 219 | 219 | item.remove(child) | |
| 220 | 220 | child = ET.Element('translation') | |
| 221 | 221 | for i in range(0, int(get_nplurals(self.conf['lang']))): | |
| 222 | - | print("numerusform") | |
| 223 | 222 | child.append(ET.Element('numerusform')) | |
| 224 | 223 | item.append(child) | |
| 225 | 224 | break |
offlate/systems/git.py
| 155 | 155 | def content(self): | |
| 156 | 156 | content = {} | |
| 157 | 157 | for resource in Project.translationfiles: | |
| 158 | - | print(resource['format']) | |
| 159 | 158 | content[resource['filename']] = resource['format'].content() | |
| 160 | 159 | return content | |
| 161 | 160 |