From: Robin Dunn Date: Fri, 26 Jul 2002 01:51:29 +0000 (+0000) Subject: Don't show a dialog upon import when Numeric isn't installed X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/5c4c285a9e128c5e30cf1870944cb407b077efbe Don't show a dialog upon import when Numeric isn't installed git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@16280 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/wxPython/wxPython/lib/wxPlotCanvas.py b/wxPython/wxPython/lib/wxPlotCanvas.py index 32498d735e..926333c92d 100644 --- a/wxPython/wxPython/lib/wxPlotCanvas.py +++ b/wxPython/wxPython/lib/wxPlotCanvas.py @@ -27,15 +27,18 @@ try: import Numeric except: # bummer! - d = wx.wxMessageDialog(wx.NULL, - """This module requires the Numeric module, which could not be imported. -It probably is not installed (it's not part of the standard Python -distribution). See the Python site (http://www.python.org) for -information on downloading source or binaries.""", - "Numeric not found") - if d.ShowModal() == wx.wxID_CANCEL: - d = wx.wxMessageDialog(wx.NULL, "I kid you not! Pressing Cancel won't help you!", "Not a joke", wx.wxOK) - d.ShowModal() + msg = """This module requires the Numeric module, which could not be +imported. It probably is not installed (it's not part of the standard +Python distribution). See the Python site (http://www.python.org) for +information on downloading source or binaries.""" + + if wxPlatform == '__WXMSW__': + d = wx.wxMessageDialog(wx.NULL, msg, "Numeric not found") + if d.ShowModal() == wx.wxID_CANCEL: + d = wx.wxMessageDialog(wx.NULL, "I kid you not! Pressing Cancel won't help you!", "Not a joke", wx.wxOK) + d.ShowModal() + else: + print msg raise ImportError #