mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-21 02:08:59 +02:00
- update string format method - remove redundant default arguments from function calls - remove unused imports - remove unicode identifier from strings, it's default in py3 (see: https://stackoverflow.com/a/4182635/12201331)
19 lines
514 B
Python
19 lines
514 B
Python
# Generated by Django 1.10.5 on 2017-03-22 23:35
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('notifications', '0002_auto_20160910_1649'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='notification',
|
|
name='level',
|
|
field=models.CharField(choices=[('danger', 'CRITICAL'), ('danger', 'ERROR'), ('warning', 'WARN'), ('info', 'INFO'), ('success', 'DEBUG')], max_length=10),
|
|
),
|
|
]
|