mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-01 15:42:48 +00:00
c4a104b3b6
Just ran black on the whoe repository. Fix #210.
28 lines
794 B
Python
28 lines
794 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.10.7 on 2017-10-03 03:56
|
|
from __future__ import unicode_literals
|
|
|
|
import django.core.validators
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [("users", "0054_auto_20170626_2219")]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="listright",
|
|
name="listright",
|
|
field=models.CharField(
|
|
max_length=255,
|
|
unique=True,
|
|
validators=[
|
|
django.core.validators.RegexValidator(
|
|
"^[a-z]+$",
|
|
message="Les groupes unix ne peuvent contenir que des lettres minuscules",
|
|
)
|
|
],
|
|
),
|
|
)
|
|
]
|