Changeset 3a39c2e in sasview for sasview/sasview.py


Ignore:
Timestamp:
Feb 13, 2015 3:53:03 AM (9 years ago)
Author:
krzywon
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:
8c9ffde
Parents:
79492222
Message:

Next iteration of the SANS→SAS is complete.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/sasview.py

    r79492222 r3a39c2e  
    4646        reload(sys) 
    4747    sys.setdefaultencoding("iso-8859-1") 
    48 from sans.guiframe import gui_manager 
    49 from sans.guiframe.gui_style import GUIFRAME 
     48from sas.guiframe import gui_manager 
     49from sas.guiframe.gui_style import GUIFRAME 
    5050from welcome_panel import WelcomePanel 
    5151# For py2exe, import config here 
     
    7878        # Fitting perspective 
    7979        try: 
    80             import sans.perspectives.fitting as module     
     80            import sas.perspectives.fitting as module     
    8181            fitting_plug = module.Plugin() 
    8282            self.gui.add_perspective(fitting_plug) 
     
    8888        # P(r) perspective 
    8989        try: 
    90             import sans.perspectives.pr as module     
     90            import sas.perspectives.pr as module     
    9191            pr_plug = module.Plugin(standalone=False) 
    9292            self.gui.add_perspective(pr_plug) 
     
    9797        #Invariant perspective 
    9898        try: 
    99             import sans.perspectives.invariant as module     
     99            import sas.perspectives.invariant as module     
    100100            invariant_plug = module.Plugin(standalone=False) 
    101101            self.gui.add_perspective(invariant_plug) 
     
    108108        #Calculator perspective    
    109109        try: 
    110             import sans.perspectives.calculator as module     
     110            import sas.perspectives.calculator as module     
    111111            calculator_plug = module.Plugin(standalone=False) 
    112112            self.gui.add_perspective(calculator_plug) 
Note: See TracChangeset for help on using the changeset viewer.