From c478ccdbfa2db94ec3f0dcef15eda716088a938e Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 23 Feb 2013 02:35:29 +0000 Subject: [PATCH] Py3 port for helpviewer git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73560 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wx/tools/helpviewer.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/wx/tools/helpviewer.py b/wx/tools/helpviewer.py index 6f322eca..e103f0be 100644 --- a/wx/tools/helpviewer.py +++ b/wx/tools/helpviewer.py @@ -7,6 +7,7 @@ # Created: 11-Dec-2002 # Copyright: (c) 2013 by Total Control Software # Licence: wxWindows license +# Tags: phoenix-port, py3-port #---------------------------------------------------------------------- """ @@ -33,7 +34,7 @@ def makeOtherFrame(helpctrl): def main(args=sys.argv): if len(args) < 2: - print __doc__ + print(__doc__) return args = args[1:] @@ -43,7 +44,7 @@ def main(args=sys.argv): args = args[1:] if len(args) == 0: - print __doc__ + print(__doc__) return import wx @@ -68,7 +69,7 @@ def main(args=sys.argv): # and add the books for helpfile in args: - print "Adding %s..." % helpfile + print("Adding %s..." % helpfile) helpctrl.AddBook(helpfile, 1) # The frame used by the HtmlHelpController is set to not prevent