diff options
author | Lynx Linden <lynx@lindenlab.com> | 2010-02-18 15:03:03 +0000 |
---|---|---|
committer | Lynx Linden <lynx@lindenlab.com> | 2010-02-18 15:03:03 +0000 |
commit | b71f451b76ef65c6afc29a9da8c0f5d0b40cd720 (patch) | |
tree | 1f3c320f7f66eb7590f8855f71a907077a0e257f /indra/lib/python | |
parent | fa03910a34e5c32149793605bc481de00ada5e1c (diff) |
EXT-5461: Reverting change 49e628c3a0c5.
Renaming skins/base back to skins/default to unblock I10n.
Revert was requested by Q.
Diffstat (limited to 'indra/lib/python')
-rw-r--r-- | indra/lib/python/indra/util/test_win32_manifest.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/indra/lib/python/indra/util/test_win32_manifest.py b/indra/lib/python/indra/util/test_win32_manifest.py index 6c59210294..0149b9f43a 100644 --- a/indra/lib/python/indra/util/test_win32_manifest.py +++ b/indra/lib/python/indra/util/test_win32_manifest.py @@ -77,15 +77,13 @@ def find_vc_dir(): def find_mt_path(): vc_dir = find_vc_dir() - print "Found vc_dir: %s" % vc_dir - mt_path = '\"%s\\VC\\bin\\mt.exe\"' % vc_dir + mt_path = '\"%sbin\\mt.exe\"' % vc_dir return mt_path def test_assembly_binding(src_filename, assembly_name, assembly_ver): print "checking %s dependency %s..." % (src_filename, assembly_name) (tmp_file_fd, tmp_file_name) = tempfile.mkstemp(suffix='.xml') - print tmp_file_name tmp_file = os.fdopen(tmp_file_fd) tmp_file.close() |