Ignore:
Timestamp:
Jan 2, 2017 1:10:13 AM (7 years ago)
Author:
wojciech
Children:
25594ca
Parents:
6c6aa83 (diff), c1681ea (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:

Merged with master

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/sas/sasgui/guiframe/gui_manager.py

    r62243ae rb39debba  
    19951995                wx.PostEvent(self, 
    19961996                             StatusEvent(status="Completed saving.")) 
    1997             except: 
     1997            except Exception: 
    19981998                msg = "Error occurred while saving: " 
     1999                msg += traceback.format_exc() 
    19992000                msg += "To save, the application panel should have a data set.." 
    20002001                wx.PostEvent(self, StatusEvent(status=msg)) 
     
    20452046                logging.warning(msg) 
    20462047                wx.PostEvent(self, StatusEvent(status=msg, info="error")) 
    2047         except: 
     2048        except Exception: 
    20482049            msg = "Error occurred while saving: " 
     2050            msg += traceback.format_exc() 
    20492051            msg += "To save, at least one application panel " 
    20502052            msg += "should have a data set.." 
Note: See TracChangeset for help on using the changeset viewer.