Fix printing in gen_history

This commit is contained in:
Théophile Bastian 2018-02-26 17:24:22 +01:00
parent c94841c17b
commit 379b53e6ce
1 changed files with 1 additions and 1 deletions

View File

@ -13,4 +13,4 @@ class Command(BaseCommand):
def handle(self, *args, **kwargs):
prof = profiles.Profile.objects.all()[0]
history = generate_history(prof, datetime.now())
self.stdout.write(history.to_xml_string())
print(history.to_xml_string())