Revision: 3650
Author: pekka.klarck
Date: Fri May 28 08:30:50 2010
Log: cleanup
http://code.google.com/p/robotframework/source/detail?r=3650

Modified:
 /trunk/src/robot/running/model.py

=======================================
--- /trunk/src/robot/running/model.py   Fri May 28 08:09:22 2010
+++ /trunk/src/robot/running/model.py   Fri May 28 08:30:50 2010
@@ -206,8 +206,8 @@
         self.teardown = defaults.get_teardown(tc_data.teardown)
         self.tags = defaults.get_tags(tc_data.tags)
         self.timeout = defaults.get_timeout(tc_data.timeout)
-        self.template = defaults.get_template(tc_data.template)
-        self.keywords = Keywords(tc_data.steps, self.template)
+        template = defaults.get_template(tc_data.template)
+        self.keywords = Keywords(tc_data.steps, template)

     def run(self, context, suite_errors):
         self._suite_errors = suite_errors

Reply via email to