mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-04-10 17:40:58 +00:00
Variable name cleanup in setup.py
git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3701 e7d03fd6-7b0d-0410-9947-9c21f3af8025
This commit is contained in:
parent
608c4193c6
commit
bc9d5c3762
1 changed files with 5 additions and 5 deletions
10
setup.py
10
setup.py
|
|
@ -413,12 +413,12 @@ class MyBuild (build, object):
|
|||
"""
|
||||
For each po/*.po, build .mo file in target locale directory.
|
||||
"""
|
||||
for (_src, _dst) in list_message_files(self.distribution.get_name()):
|
||||
_build_dst = os.path.join("build", _dst)
|
||||
self.mkpath(os.path.dirname(_build_dst))
|
||||
self.announce("Compiling %s -> %s" % (_src, _build_dst))
|
||||
for (src, dst) in list_message_files(self.distribution.get_name()):
|
||||
build_dst = os.path.join("build", dst)
|
||||
self.mkpath(os.path.dirname(build_dst))
|
||||
self.announce("Compiling %s -> %s" % (src, build_dst))
|
||||
from linkcheck import msgfmt
|
||||
msgfmt.make(_src, _build_dst)
|
||||
msgfmt.make(src, build_dst)
|
||||
|
||||
def run (self):
|
||||
check_manifest()
|
||||
|
|
|
|||
Loading…
Reference in a new issue