diff options
author | Michele Calgaro <[email protected]> | 2023-01-03 15:29:41 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-01-07 22:14:56 +0900 |
commit | 4ce11cc30df1805459a615960fdec204a975548a (patch) | |
tree | 084f1e1fa404bdf0d082b1a58acf392b5d177326 /examples/pytde-sampler/about.py | |
parent | 065f41b4908b11278d4334e8c85150ec0fd4a9f6 (diff) | |
download | pytde-4ce11cc30df1805459a615960fdec204a975548a.tar.gz pytde-4ce11cc30df1805459a615960fdec204a975548a.zip |
Drop python2 support.
Signed-off-by: Michele Calgaro <[email protected]>
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 = '[email protected]' -version = '0.1' -shortDescription = 'The PyKDE Sampler' +appName = b'pytdesampler' +progName = b'PyTDE Sampler' +authorName = b'Troy Melhase' +authorEmail = bugsEmailAddress = b'[email protected]' +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 |