Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: modules/
Date: Fri, 31 Aug 2012 00:35:01
Message-Id: 1346373265.4f03fda74d686c142339add5323ab74c37e9748c.jmbsvicetto@gentoo
1 commit: 4f03fda74d686c142339add5323ab74c37e9748c
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 31 00:33:37 2012 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 00:34:25 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=4f03fda7
7
8 We want update_seed to be optional.
9
10 ---
11 modules/stage1_target.py | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/modules/stage1_target.py b/modules/stage1_target.py
15 index f350ac7..876d2c3 100644
16 --- a/modules/stage1_target.py
17 +++ b/modules/stage1_target.py
18 @@ -98,7 +98,7 @@ class stage1_target(generic_stage_target):
19 self.mountmap["/tmp/stage1root/proc"]="/proc"
20
21 def set_update_seed(self):
22 - if self.settings.has_key(self.settings["update_seed"]):
23 + if self.settings.has_key("update_seed"):
24 self.settings["update_seed_cache"]=self.settings["update_seed"]
25
26 def register(foo):