summaryrefslogtreecommitdiffstats
path: root/main
diff options
context:
space:
mode:
Diffstat (limited to 'main')
-rw-r--r--main/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/models.py b/main/models.py
index ec0d95e..59de33f 100644
--- a/main/models.py
+++ b/main/models.py
@@ -79,7 +79,7 @@ class MirrorUrl(models.Model):
class MirrorRsync(models.Model):
hostname = models.CharField(max_length=255)
- ip = models.IPAddressField()
+ ip = models.CharField(max_length=24)
mirror = models.ForeignKey(Mirror, related_name="rsync_ips")
def __unicode__(self):
return "%s (%s)" % (self.ip, self.hostname)