diff options
Diffstat (limited to 'examples/pytde-sampler/about.py')
-rw-r--r-- | examples/pytde-sampler/about.py | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/examples/pytde-sampler/about.py b/examples/pytde-sampler/about.py index f675b1c..c58de92 100644 --- a/examples/pytde-sampler/about.py +++ b/examples/pytde-sampler/about.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -""" About the PyKDE Sampler +""" About the PyTDE Sampler Defines the 'about' function to create a TDEAboutData instance for the sampler application. @@ -8,16 +8,16 @@ from os.path import dirname, join from tdecore import TDEAboutData -appName = 'pytdesampler' -progName = 'PyKDE Sampler' -authorName = 'Troy Melhase' -authorEmail = bugsEmailAddress = 'troy@gci.net' -version = '0.1' -shortDescription = 'The PyKDE Sampler' +appName = b'pytdesampler' +progName = b'PyTDE Sampler' +authorName = b'Troy Melhase' +authorEmail = bugsEmailAddress = b'troy@gci.net' +version = b'0.1' +shortDescription = b'The PyTDE Sampler' licenseType = TDEAboutData.License_GPL_V2 -copyrightStatement = '(c) 2006, %s' % (authorName, ) -homePageAddress = 'http://www.riverbankcomputing.co.uk/pytde/' -aboutText = ("The application sampler for PyKDE.") +copyrightStatement = '(c) 2006, Troy Melhase' +homePageAddress = b'http://www.riverbankcomputing.co.uk/pytde/' +aboutText = (b"The application sampler for PyTDE.") contributors = [] # module-level global for keeping the strings around; intentional |