Skip to content
This repository was archived by the owner on Dec 28, 2017. It is now read-only.

Commit a237ac8

Browse files
committed
Merge pull request #21 from jzmiller1/patch-1
Removed duplicate verbose name
2 parents 1a26797 + cad4188 commit a237ac8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

eve_db/models/inventory.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -673,11 +673,11 @@ class InvUniqueName(models.Model):
673673
class Meta:
674674
app_label = 'eve_db'
675675
ordering = ['id']
676-
verbose_name = 'Position'
677-
verbose_name_plural = 'Positions'
676+
verbose_name = 'Unique Name'
677+
verbose_name_plural = 'Unique Names'
678678

679679
def __unicode__(self):
680680
return self.name
681681

682682
def __str__(self):
683-
return self.__unicode__()
683+
return self.__unicode__()

0 commit comments

Comments
 (0)