Changeset ae2f623 in sasview for src/sas/sasgui/perspectives/invariant
- Timestamp:
- Sep 27, 2017 10:49:40 AM (7 years ago)
- Parents:
- ad476d1 (diff), 83db1cc (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:
- Paul Kienzle <pkienzle@…> (09/27/17 10:49:40)
- git-committer:
- GitHub <noreply@…> (09/27/17 10:49:40)
- Location:
- src/sas/sasgui/perspectives/invariant
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sas/sasgui/perspectives/invariant/__init__.py
r959eb01 r5a405bd 15 15 # Check for data path next to exe/zip file. 16 16 # If we are inside a py2exe zip file, we need to go up 17 # to get to the directory containing 17 # to get to the directory containing 18 18 # the media for this module 19 19 path = os.path.dirname(__file__) … … 28 28 return module_media_path 29 29 return media_path 30 30 31 31 raise RuntimeError('Could not find invariant media files') 32 32 … … 34 34 """ 35 35 Return the data files associated with media invariant. 36 36 37 37 The format is a list of (directory, [files...]) pairs which can be 38 38 used directly in setup(...,data_files=...) for setup.py. … … 40 40 """ 41 41 data_files = [] 42 path = get_data_path(media="media") 43 for f in findall(path): 44 data_files.append(('media/invariant_media', [f])) 42 data_files.append(('media/invariant_media', findall(get_data_path("media")))) 45 43 return data_files -
src/sas/sasgui/perspectives/invariant/invariant_state.py
r7432acb r1fa4f736 728 728 729 729 for entry in entry_list: 730 731 sas_entry, _ = self._parse_entry(entry)732 730 invstate = self._parse_state(entry) 733 734 731 # invstate could be None when .svs file is loaded 735 732 # in this case, skip appending to output 736 733 if invstate is not None: 734 sas_entry, _ = self._parse_entry(entry) 737 735 sas_entry.meta_data['invstate'] = invstate 738 736 sas_entry.filename = invstate.file
Note: See TracChangeset
for help on using the changeset viewer.