misc/build_helpers/run_trial.py: fix another typo in last patch.

This commit is contained in:
david-sarah 2010-10-31 09:03:32 -07:00
parent 7da0457ee5
commit 8eca94e498

View File

@ -85,7 +85,7 @@ if not same:
"but expected to be testing the code at %r.\n"
% (srcdir, srcfile, cwd))
cwdu = os.path.normcase(os.path.normpath(os.getcwdu())
cwdu = os.path.normcase(os.path.normpath(os.getcwdu()))
if os.path.basename(cwdu) == u'src':
cwdu = os.path.dirname(cwdu)
if not isinstance(cwd, unicode) and cwd.decode(sys.getfilesystemencoding(), 'replace') != cwdu: