Ignore:
Timestamp:
May 2, 2017 8:08:23 AM (7 years ago)
Author:
Paul Kienzle <pkienzle@…>
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, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
367a31c
Parents:
cc0948c (diff), 658dd57 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into ticket-869

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/perspectives/fitting/basepage.py

    rcc0948c r140159c  
    22Base Page for fitting 
    33""" 
     4from __future__ import print_function 
     5 
    46import sys 
    57import os 
     
    670672        # It seems MAC needs wxCallAfter 
    671673        if event.GetId() == GUIFRAME_ID.COPYEX_ID: 
    672             print "copy excel" 
     674            print("copy excel") 
    673675            wx.CallAfter(self.get_copy_excel) 
    674676        elif event.GetId() == GUIFRAME_ID.COPYLAT_ID: 
    675             print "copy latex" 
     677            print("copy latex") 
    676678            wx.CallAfter(self.get_copy_latex) 
    677679        else: 
     
    34153417        except Exception: 
    34163418            logger.error(traceback.format_exc()) 
    3417             print "Error in BasePage._paste_poly_help: %s" % \ 
    3418                   sys.exc_info()[1] 
     3419            print("Error in BasePage._paste_poly_help: %s" % \ 
     3420                  sys.exc_info()[1]) 
    34193421 
    34203422    def _set_disp_cb(self, isarray, item): 
     
    34453447            Moveit; This method doesn't belong here 
    34463448        """ 
    3447         print "BasicPage.update_pinhole_smear was called: skipping" 
     3449        print("BasicPage.update_pinhole_smear was called: skipping") 
    34483450        return 
    34493451 
     
    36213623        # check model type to show sizer 
    36223624        if self.model is not None: 
    3623             print "_set_model_sizer_selection: disabled." 
     3625            print("_set_model_sizer_selection: disabled.") 
    36243626            # self._set_model_sizer_selection(self.model) 
    36253627 
Note: See TracChangeset for help on using the changeset viewer.