Skip to content
Snippets Groups Projects

FIX: table crawler did not add changes in properties to to_be_updated

Merged Henrik tom Wörden requested to merge f-fix-table-crawler into dev
2 files
+ 3
2
Compare changes
  • Side-by-side
  • Inline
Files
2
@@ -760,7 +760,9 @@ class RowCFood(AbstractCFood):
@@ -760,7 +760,9 @@ class RowCFood(AbstractCFood):
for key, value in self.item.iteritems():
for key, value in self.item.iteritems():
if key in self.unique_cols:
if key in self.unique_cols:
continue
continue
rec.add_property(key, value)
assure_property_is(rec, key,
 
value,
 
to_be_updated=self.to_be_updated)
class CMeal(object):
class CMeal(object):
Loading