]> mj.ucw.cz Git - eval.git/commitdiff
Fixed stupid order error in fixing
authorTomas Gavenciak <gavento@ucw.cz>
Sat, 10 Jul 2010 09:11:21 +0000 (11:11 +0200)
committerTomas Gavenciak <gavento@ucw.cz>
Sat, 10 Jul 2010 09:11:21 +0000 (11:11 +0200)
t/moe/conf.py

index e5602b9f55529df1854c37c73657862833817fce..00523ed80f028cef197e4e4c34dd5bcacb0eddb6 100644 (file)
@@ -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."