From 404ac70b1b4494365959eda70179594579c71145 Mon Sep 17 00:00:00 2001 From: Steve Barnes Date: Tue, 8 Aug 2017 11:45:05 +0100 Subject: [PATCH] Minor message changes in wx/tools/wxget_docs_demo.py --- wx/tools/wxget_docs_demo.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wx/tools/wxget_docs_demo.py b/wx/tools/wxget_docs_demo.py index ce5eb7b2..73a8a4ce 100644 --- a/wx/tools/wxget_docs_demo.py +++ b/wx/tools/wxget_docs_demo.py @@ -102,7 +102,7 @@ def get_item(final, url, cache, name, ext): ["%s is not yet installed." % name, "Go on-line to get it?", "(Select No on charged or slow connections)"]), - "Download Prompt", wx.YES_NO|wx.CENTER) + "Download Prompt", wx.YES_NO|wx.CENTER|wx.ICON_INFORMATION) if yes_no == wx.YES: cached = wxget.download_file(url, cache, True) else: @@ -145,7 +145,7 @@ def docs_main(args=sys.argv): print("Show Docs at:", location) webbrowser.open(location_url) else: - result = 'Unable to find the wxPython Documentation!' + result = 'Unable to find & show the wxPython Documentation!' report_error(result) done(result) @@ -164,7 +164,7 @@ def demo_main(args=sys.argv): #subprocess.check_call(cmds) # Use instead for debug print("Demo starting as PID %s - may take a few seconds!" % pid) else: - result = 'Unable to find the wxPython Demo!' + result = 'Unable to find & start the wxPython Demo!' report_error(result) done(result)