Fix printing in gen_history
This commit is contained in:
parent
c94841c17b
commit
379b53e6ce
1 changed files with 1 additions and 1 deletions
|
@ -13,4 +13,4 @@ class Command(BaseCommand):
|
||||||
def handle(self, *args, **kwargs):
|
def handle(self, *args, **kwargs):
|
||||||
prof = profiles.Profile.objects.all()[0]
|
prof = profiles.Profile.objects.all()[0]
|
||||||
history = generate_history(prof, datetime.now())
|
history = generate_history(prof, datetime.now())
|
||||||
self.stdout.write(history.to_xml_string())
|
print(history.to_xml_string())
|
||||||
|
|
Loading…
Reference in a new issue