From 4329ca101357cbeefb51f33cca929cc8a99dbe5e Mon Sep 17 00:00:00 2001 From: Tomas Gavenciak Date: Sat, 10 Jul 2010 11:11:21 +0200 Subject: [PATCH] Fixed stupid order error in fixing --- t/moe/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/moe/conf.py b/t/moe/conf.py index e5602b9..00523ed 100644 --- a/t/moe/conf.py +++ b/t/moe/conf.py @@ -253,8 +253,8 @@ class ConfigVar(ConfigElem): """ if self.fixed: return - self.fixed = True self.fixed_val = self.value() + self.fixed = True def unfix(self): "Set the variable to be modifiable again." -- 2.39.5