Fixed import order in migrations

This commit is contained in:
Raphael Michel
2015-07-26 19:17:33 +02:00
parent c8a47f6d4b
commit 1754bf0a01
2 changed files with 3 additions and 2 deletions

View File

@@ -1,7 +1,8 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django.db import migrations, models
import pretix.base.models

View File

@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import models, migrations
from django.db import migrations, models
class Migration(migrations.Migration):