Changeset f1044e9 in sasview
- Timestamp:
- Aug 12, 2011 5:03:08 PM (13 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, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 8abbb12
- Parents:
- b52cf23
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/setup_exe.py
rd4c19e5 rf1044e9 123 123 for f in findall(images_dir): 124 124 if os.path.split(f)[0].count('.svn')==0: 125 data_files.append(( os.path.split(f)[0], [f]))125 data_files.append(("images", [f])) 126 126 127 127 # Copying the HTML help docs 128 128 for f in findall(media_dir): 129 129 if os.path.split(f)[0].count('.svn')==0: 130 data_files.append(( os.path.split(f)[0], [f]))130 data_files.append(("media", [f])) 131 131 132 132 # Copying the sample data user data 133 133 for f in findall(test_dir): 134 134 if os.path.split(f)[0].count('.svn')==0: 135 data_files.append(( os.path.split(f)[0], [f]))135 data_files.append(("test", [f])) 136 136 137 137 # Copying the sample data user data
Note: See TracChangeset
for help on using the changeset viewer.