Merge branch 'master' into issue/121

This commit is contained in:
Daniel Quinn 2016-08-20 18:16:07 +01:00
commit 47e42ed78b

View File

@ -2,8 +2,6 @@ from django.core.management.base import BaseCommand
from documents.models import Log
from ...mixins import Renderable
class Command(BaseCommand):
@ -12,4 +10,3 @@ class Command(BaseCommand):
def handle(self, *args, **options):
for l in Log.objects.order_by("pk"):
print(l)