X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1b62f00d8e3ec5437ab780cb3d73d299cc61e20c..258836fa259076b4bda6088fe653218645b2e26d:/wxPython/demo/FancyText.py diff --git a/wxPython/demo/FancyText.py b/wxPython/demo/FancyText.py index edda6ce178..959a0dd1b5 100644 --- a/wxPython/demo/FancyText.py +++ b/wxPython/demo/FancyText.py @@ -36,6 +36,13 @@ def runTest(frame, nb, log): -import string -overview = string.replace(fancytext.__doc__, "<", "<") +overview = fancytext.__doc__.replace("<", "<") + + + + +if __name__ == '__main__': + import sys,os + import run + run.main(['', os.path.basename(sys.argv[0])])