Fundraising in PDF.
[wolnelektury.git] / src / chunks / migrations / 0001_initial.py
index 878e4fb..c0dcf9c 100644 (file)
@@ -1,6 +1,6 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
-
+# This file is part of Wolne Lektury, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Wolne Lektury. See NOTICE for more information.
+#
 from django.db import models, migrations
 
 
@@ -14,7 +14,7 @@ class Migration(migrations.Migration):
             name='Attachment',
             fields=[
                 ('key', models.CharField(help_text='A unique name for this attachment', max_length=255, serialize=False, verbose_name='key', primary_key=True)),
-                ('attachment', models.FileField(upload_to=b'chunks/attachment')),
+                ('attachment', models.FileField(upload_to='chunks/attachment')),
             ],
             options={
                 'ordering': ('key',),