From: Tomas Gavenciak Date: Sat, 10 Jul 2010 09:11:21 +0000 (+0200) Subject: Fixed stupid order error in fixing X-Git-Tag: python-dummy-working~43 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=4329ca101357cbeefb51f33cca929cc8a99dbe5e;p=eval.git Fixed stupid order error in fixing --- 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."