Fix print of all taxonomies

pull/2/head
Raphaël Vinot 2016-07-29 11:00:18 +02:00
parent 52fea63106
commit 8deea78dda
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ class Taxonomies(collections.Mapping):
to_print = ''
for mt_taxonomy in self.all_machinetags():
for mt in mt_taxonomy:
to_print += '\n'.join(mt)
to_print += '{}\n'.format(mt)
to_print += '\n'
return to_print