[SCM] live-studio branch, master, updated. 25873fc551c6513a04636955407754fab5f3e56a
Chris Lamb
lamby at debian.org
Fri Jul 30 23:59:19 UTC 2010
The following commit has been merged in the master branch:
commit 25873fc551c6513a04636955407754fab5f3e56a
Author: Chris Lamb <lamby at debian.org>
Date: Fri Jul 30 19:57:54 2010 -0400
--debian-installer accepts {true,false} not {yes,no}
diff --git a/live_studio/config/models.py b/live_studio/config/models.py
index c7daf30..c876d05 100644
--- a/live_studio/config/models.py
+++ b/live_studio/config/models.py
@@ -56,11 +56,11 @@ class Config(models.Model):
installer = models.CharField(
max_length=4,
- default='no',
+ default='false',
choices=(
- ('no', 'No installer integration'),
+ ('false', 'No installer integration'),
('live', '"Live" installer integration'),
- ('yes', 'Standard installer integration'),
+ ('true', 'Standard installer integration'),
)
)
--
live-studio
More information about the debian-live-changes
mailing list