Changeset d85c194 in sasview for sasview/sasview.py


Ignore:
Timestamp:
Feb 22, 2016 9:04:24 AM (8 years ago)
Author:
Piotr Rozyczko <piotr.rozyczko@…>
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:
06aaa75d
Parents:
d7bb526
Message:

Remaining modules refactored

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sasview/sasview.py

    rb699768 rd85c194  
    8888    reload(sys) 
    8989    sys.setdefaultencoding("iso-8859-1") 
    90 from sas.guiframe import gui_manager 
    91 from sas.guiframe.gui_style import GUIFRAME 
     90from sas.sasgui.guiframe import gui_manager 
     91from sas.sasgui.guiframe.gui_style import GUIFRAME 
    9292from welcome_panel import WelcomePanel 
    9393# For py2exe, import config here 
     
    116116        # Fitting perspective 
    117117        try: 
    118             import sas.perspectives.fitting as module     
     118            import sas.sasgui.perspectives.fitting as module     
    119119            fitting_plug = module.Plugin() 
    120120            self.gui.add_perspective(fitting_plug) 
     
    125125        # P(r) perspective 
    126126        try: 
    127             import sas.perspectives.pr as module 
     127            import sas.sasgui.perspectives.pr as module 
    128128            pr_plug = module.Plugin() 
    129129            self.gui.add_perspective(pr_plug) 
     
    134134        #Invariant perspective 
    135135        try: 
    136             import sas.perspectives.invariant as module 
     136            import sas.sasgui.perspectives.invariant as module 
    137137            invariant_plug = module.Plugin() 
    138138            self.gui.add_perspective(invariant_plug) 
     
    144144        #Calculator perspective    
    145145        try: 
    146             import sas.perspectives.calculator as module 
     146            import sas.sasgui.perspectives.calculator as module 
    147147            calculator_plug = module.Plugin() 
    148148            self.gui.add_perspective(calculator_plug) 
Note: See TracChangeset for help on using the changeset viewer.