53059cec9053a8429b7f0a8f06e6cbe1672b60e7,cellprofiler/modules/groups.py,Groups,on_setting_changed,#Groups#Any#Any#,154

Before Change


                group.metadata_choice.test_valid(pipeline)
            except:
                pass
        self.update_tables()
        
    def update_tables(self):
        if self.wants_groups:
            for group in self.grouping_metadata:

After Change


                group.metadata_choice.test_valid(pipeline)
            except:
                is_valid = False
        if is_valid:
            self.update_tables()
        
    def update_tables(self):
        if self.wants_groups:
            try:
                self.workspace.refresh_image_set()
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: CellProfiler/CellProfiler
Commit Name: 53059cec9053a8429b7f0a8f06e6cbe1672b60e7
Time: 2013-01-16
Author: leek@broadinstitute.org
File Name: cellprofiler/modules/groups.py
Class Name: Groups
Method Name: on_setting_changed


Project Name: CellProfiler/CellProfiler
Commit Name: 53059cec9053a8429b7f0a8f06e6cbe1672b60e7
Time: 2013-01-16
Author: leek@broadinstitute.org
File Name: cellprofiler/modules/groups.py
Class Name: Groups
Method Name: on_activated


Project Name: CellProfiler/CellProfiler
Commit Name: a5b630a65796a2260796b44bb08fdd52432b5431
Time: 2012-06-25
Author: leek@broadinstitute.org
File Name: cellprofiler/modules/groups.py
Class Name: Groups
Method Name: on_activated