Revision: 3312
Author: jprantan
Date: Tue May 18 03:55:35 2010
Log: Fixed to write last value from the table when new table follows.
http://code.google.com/p/robotframework/source/detail?r=3312
Modified:
/trunk/src/robot/parsing/populator.py
=======================================
--- /trunk/src/robot/parsing/populator.py Tue May 18 02:58:59 2010
+++ /trunk/src/robot/parsing/populator.py Tue May 18 03:55:35 2010
@@ -304,6 +304,7 @@
return None
def start_table(self, name):
+ self._current_populator.populate()
try:
self._current_populator = self.populators[name](self._datafile)
except KeyError: