From bc9d5c37624fccae90e34b37edd5cace28a8f9d7 Mon Sep 17 00:00:00 2001 From: calvin Date: Mon, 21 Apr 2008 01:27:51 +0000 Subject: [PATCH] Variable name cleanup in setup.py git-svn-id: https://linkchecker.svn.sourceforge.net/svnroot/linkchecker/trunk/linkchecker@3701 e7d03fd6-7b0d-0410-9947-9c21f3af8025 --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index a4d3a9b6..0b31682a 100755 --- a/setup.py +++ b/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()