summaryrefslogtreecommitdiffstats
path: root/releng/migrations/0003_release_pgp_key.py
diff options
context:
space:
mode:
authorJustin ! <just1602@riseup.net>2020-10-04 00:59:41 -0400
committerjelle van der Waa <jelle@vdwaa.nl>2020-11-11 22:23:29 +0100
commitc6cf91a40df69341dca8cec5e5971ff21cca0e04 (patch)
tree4f3a9de22010a5fd6e10a2d38801635b6d4f8b00 /releng/migrations/0003_release_pgp_key.py
parent34de88278fc4bbcc72f83be4b40df881735f8a35 (diff)
downloadarchweb-c6cf91a40df69341dca8cec5e5971ff21cca0e04.tar.gz
archweb-c6cf91a40df69341dca8cec5e5971ff21cca0e04.zip
Fix pep8 errors
Diffstat (limited to 'releng/migrations/0003_release_pgp_key.py')
-rw-r--r--releng/migrations/0003_release_pgp_key.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/releng/migrations/0003_release_pgp_key.py b/releng/migrations/0003_release_pgp_key.py
index a211a798..3ff103c6 100644
--- a/releng/migrations/0003_release_pgp_key.py
+++ b/releng/migrations/0003_release_pgp_key.py
@@ -14,6 +14,7 @@ class Migration(migrations.Migration):
migrations.AddField(
model_name='release',
name='pgp_key',
- field=devel.fields.PGPKeyField(blank=True, help_text='consists of 40 hex digits; use `gpg --fingerprint`', max_length=40, null=True, verbose_name='PGP key fingerprint'),
+ field=devel.fields.PGPKeyField(blank=True, help_text='consists of 40 hex digits; use `gpg --fingerprint`',
+ max_length=40, null=True, verbose_name='PGP key fingerprint'),
),
]