Skip to content
Snippets Groups Projects
Commit efb0df4e authored by Jacek Lebioda's avatar Jacek Lebioda
Browse files

fix: attempted to fix a faulty migration

parent a520fb94
No related branches found
No related tags found
1 merge request!261Python3 translation
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-09-04 10:40
# WARNIN!
# Manual corrections to deal with a migration to Python3
import datetime
from django.db import migrations, models
d = datetime.time(17, 0, 0)
class Migration(migrations.Migration):
dependencies = [
......@@ -24,7 +31,7 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='availability',
name='available_till',
field=models.TimeField(default=b'17:00', verbose_name=b'Available until'),
field=models.TimeField(default=d, verbose_name=b'Available until'),
),
migrations.AlterField(
model_name='availability',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment