added pep8 fix and missing migration

This commit is contained in:
Alex Seeholzer 2017-01-13 17:39:56 +01:00
parent 645f196848
commit a2315eb0c4
2 changed files with 21 additions and 1 deletions

View File

@ -0,0 +1,20 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
from django.conf import settings
class Migration(migrations.Migration):
dependencies = [
('helpdesk', '0013_email_box_local_dir_and_logging'),
]
operations = [
migrations.AlterField(
model_name='usersettings',
name='user',
field=models.OneToOneField(to=settings.AUTH_USER_MODEL, related_name='usersettings_helpdesk'),
),
]

View File

@ -127,4 +127,4 @@ class TicketActionsTestCase(TestCase):
response = self.client.get(reverse('helpdesk:submit'), follow=True)
self.assertEqual(response.status_code, 200)
# TODO this needs to be checked further
# TODO this needs to be checked further