Changeset b682c6a in sasview for src/sas/sasgui/perspectives/fitting/models.py
- Timestamp:
- Aug 17, 2017 10:14:00 AM (7 years ago)
- Branches:
- master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- c9ecd1b
- Parents:
- ce2819b (diff), a06ee7e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/fitting/models.py
r146c669 rb682c6a 187 187 try: 188 188 model = load_custom_model(path) 189 model.name = PLUGIN_NAME_BASE + model.name 189 if not model.name.count(PLUGIN_NAME_BASE): 190 model.name = PLUGIN_NAME_BASE + model.name 190 191 plugins[model.name] = model 191 192 except Exception: … … 300 301 for name, plug in self.stored_plugins.iteritems(): 301 302 self.model_dictionary[name] = plug 302 303 303 304 self._get_multifunc_models() 304 305
Note: See TracChangeset
for help on using the changeset viewer.