Skip to content

Commit

Permalink
Remove explicit byte string from migration 0003 (#298)
Browse files Browse the repository at this point in the history
The explicit byte string breaks migrations in Python 3.x.
  • Loading branch information
florianm authored and avelis committed Aug 9, 2018
1 parent 5298dc6 commit 10e7388
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion silk/migrations/0003_request_prof_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='request',
name='prof_file',
field=models.FileField(null=True, upload_to=b''),
field=models.FileField(null=True, upload_to=''),
),
]

0 comments on commit 10e7388

Please sign in to comment.