summaryrefslogtreecommitdiff
path: root/main/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'main/models.py')
-rw-r--r--main/models.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/main/models.py b/main/models.py
index d129f4a7..0954f79d 100644
--- a/main/models.py
+++ b/main/models.py
@@ -67,8 +67,8 @@ class Mirror(models.Model):
public = models.BooleanField(default=True)
active = models.BooleanField(default=True)
isos = models.BooleanField(default=True)
- rsync_user = models.CharField(max_length=50, null=True)
- rsync_password = models.CharField(max_length=50, null=True)
+ rsync_user = models.CharField(max_length=50, blank=True, default='')
+ rsync_password = models.CharField(max_length=50, blank=True, default='')
notes = models.TextField(blank=True)
def __unicode__(self):
return self.name