Browse Source

web/postkey/models.py: correct comment

pull/1/head
Hidden Z 14 years ago
parent
commit
b083f59957
  1. 2
      web/postkey/models.py

2
web/postkey/models.py

@ -9,7 +9,7 @@ class i2phost(models.Model):
date_added = models.DateTimeField(auto_now_add=True) date_added = models.DateTimeField(auto_now_add=True)
# Not-activated hosts will not appear in exported hosts.txt # Not-activated hosts will not appear in exported hosts.txt
activated = models.BooleanField(default=False) activated = models.BooleanField(default=False)
# Hosts from external sources shouldn't be autoremoved # Indicator for hosts added from external source
external = models.BooleanField(default=False) external = models.BooleanField(default=False)
def __unicode__(self): def __unicode__(self):

Loading…
Cancel
Save