Changeset 6d52ff44 in sasview for calculatorview/src


Ignore:
Timestamp:
Dec 6, 2011 11:41:27 AM (13 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
b7cfa8d
Parents:
624cd3c3
Message:

Re #5 fixing installer build on mac

File:
1 edited

Legend:

Unmodified
Added
Removed
  • calculatorview/src/sans/perspectives/calculator/__init__.py

    r3b2a36f r6d52ff44  
    11PLUGIN_ID = "Calculator plug-in 1.0" 
    2 from calculator import * 
    3  
    42import os 
    5 from distutils.filelist import findall 
    63 
    74N_DIR = 12 
     
    4542    data_files = [] 
    4643    path = get_data_path(media="media") 
    47     for f in findall(path): 
     44    for f in os.listdir(path): 
    4845        data_files.append(('media/calculator_media', [f])) 
    4946    return data_files 
Note: See TracChangeset for help on using the changeset viewer.