Changeset f1044e9 in sasview


Ignore:
Timestamp:
Aug 12, 2011 5:03:08 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
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
Message:

fixed minor bug in folder names

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/setup_exe.py

    rd4c19e5 rf1044e9  
    123123for f in findall(images_dir): 
    124124    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])) 
    126126 
    127127# Copying the HTML help docs 
    128128for f in findall(media_dir): 
    129129    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])) 
    131131 
    132132# Copying the sample data user data 
    133133for f in findall(test_dir): 
    134134    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])) 
    136136         
    137137# Copying the sample data user data 
Note: See TracChangeset for help on using the changeset viewer.