2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-13 18:45:40 +00:00

fix spelling

Thanks @Stephano120
Good catch!
This commit is contained in:
Matthias Mair
2022-01-28 20:19:38 +01:00
committed by GitHub
parent cc7d9eca1a
commit 18e0a7b7e6

View File

@ -349,7 +349,7 @@ class BaseInvenTreeSetting(models.Model):
setting.value = str(value)
setting.save()
key = models.CharField(max_length=50, blank=False, unique=False, help_text=_('Settings key (must be unique - case insensitive'))
key = models.CharField(max_length=50, blank=False, unique=False, help_text=_('Settings key (must be unique - case insensitive)'))
value = models.CharField(max_length=200, blank=True, unique=False, help_text=_('Settings value'))