Revision: 3303
Author: janne.t.harkonen
Date: Tue May 18 01:59:40 2010
Log: oops
http://code.google.com/p/robotframework/source/detail?r=3303
Modified:
/trunk/src/robot/parsing/populator.py
=======================================
--- /trunk/src/robot/parsing/populator.py Tue May 18 01:59:32 2010
+++ /trunk/src/robot/parsing/populator.py Tue May 18 01:59:40 2010
@@ -275,6 +275,7 @@
class TestCaseFilePopulator(Populator):
+ _null_populator = NullPopulator()
populators = utils.NormalizedDict({'Setting':
SettingTablePopulator,
'Settings':
SettingTablePopulator,
'Metadata':
SettingTablePopulator,
@@ -290,7 +291,7 @@
def __init__(self, datafile, path):
self._datafile = datafile
self._datafile.source = path
- self._current_populator = NullPopulator()
+ self._current_populator = self._null_populator
def start_table(self, name):
try: