Skip to content
Snippets Groups Projects
Commit a4546679 authored by Jakub Štercl's avatar Jakub Štercl
Browse files

changed exported file structure

parent fa93bac1
No related branches found
No related tags found
No related merge requests found
......@@ -183,10 +183,9 @@ class DistributionOverview(BaseController, QWidget, distribution_overview.Ui_For
if file == '':
return
with open(file, 'w', encoding='utf-8') as f:
f.write(self.distribution_name + '\n')
for table in self.teamTables:
team = table.getAllData()
f.write(table.name + ': ')
f.write(table.name + ', ')
for member in team:
f.write(member.name + ', ')
f.write('\n')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment