You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
195 B

  1. '''
  2. Created on Jan 23, 2014
  3. @author: Chris
  4. '''
  5. import wx
  6. def ShowError(msg):
  7. wx.MessageDialog(
  8. None,
  9. msg,
  10. 'Argument Error',
  11. wx.ICON_ERROR)
  12. if __name__ == '__main__':
  13. pass