mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-26 02:40:23 +00:00
unicode for string constants
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@1881 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
020e21a525
commit
7cd3bad795
1 changed files with 9 additions and 9 deletions
|
|
@ -30,18 +30,18 @@ import linkcheck.log
|
|||
import linkcheck.containers
|
||||
|
||||
Version = _linkchecker_configdata.version
|
||||
AppName = "LinkChecker"
|
||||
App = AppName+" "+Version
|
||||
AppName = u"LinkChecker"
|
||||
App = AppName+u" "+Version
|
||||
Author = _linkchecker_configdata.author
|
||||
HtmlAuthor = Author.replace(' ', ' ')
|
||||
Copyright = "Copyright © 2000-2004 "+Author
|
||||
HtmlCopyright = "Copyright © 2000-2004 "+HtmlAuthor
|
||||
AppInfo = App+" "+Copyright
|
||||
HtmlAppInfo = App+", "+HtmlCopyright
|
||||
HtmlAuthor = Author.replace(u' ', u' ')
|
||||
Copyright = u"Copyright © 2000-2004 "+Author
|
||||
HtmlCopyright = u"Copyright © 2000-2004 "+HtmlAuthor
|
||||
AppInfo = App+u" "+Copyright
|
||||
HtmlAppInfo = App+u", "+HtmlCopyright
|
||||
Url = _linkchecker_configdata.url
|
||||
Email = _linkchecker_configdata.author_email
|
||||
UserAgent = "%s/%s (%s; %s)" % (AppName, Version, Url, Email)
|
||||
Freeware = AppName+""" comes with ABSOLUTELY NO WARRANTY!
|
||||
UserAgent = u"%s/%s (%s; %s)" % (AppName, Version, Url, Email)
|
||||
Freeware = AppName+u""" comes with ABSOLUTELY NO WARRANTY!
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions. Look at the file `LICENSE' within this
|
||||
distribution."""
|
||||
|
|
|
|||
Loading…
Reference in a new issue