Changeset acde566 in sasview
- Timestamp:
- Nov 1, 2017 5:42:32 AM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 8e5c36d
- Parents:
- eabdddf (diff), df4af9b (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. - git-author:
- Jeff Krzywon <krzywon@…> (11/01/17 05:42:32)
- git-committer:
- GitHub <noreply@…> (11/01/17 05:42:32)
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/calculator/model_editor.py
r69363c7 r1c206d9 332 332 msg = ("%s is not a valid Python name. Only alphanumeric \n" \ 333 333 "and underscore allowed" % self.name) 334 334 335 335 #Now check if the name already exists 336 336 if not self.overwrite_name and self.good_name: … … 338 338 list_fnames = os.listdir(self.plugin_dir) 339 339 # fake existing regular model name list 340 m_list = [model .name+ ".py" for model in self.model_list]340 m_list = [model + ".py" for model in self.model_list] 341 341 list_fnames.append(m_list) 342 342 if t_fname in list_fnames and title != mname: -
setup.py
r36ca21e rae42c85 428 428 entry_points={ 429 429 'console_scripts': [ 430 "sasview = sas.sasview.sasview:run ",430 "sasview = sas.sasview.sasview:run_gui", 431 431 ] 432 432 },
Note: See TracChangeset
for help on using the changeset viewer.