From: david-sarah Date: Sun, 31 Oct 2010 15:52:15 +0000 (-0700) Subject: misc/build_helpers/run_trial.py: fix typo in last patch. X-Git-Tag: trac-4800~8 X-Git-Url: https://git.rkrishnan.org/?a=commitdiff_plain;h=7da0457ee55b896317944abcf175a03f2ade9485;p=tahoe-lafs%2Ftahoe-lafs.git misc/build_helpers/run_trial.py: fix typo in last patch. --- diff --git a/misc/build_helpers/run_trial.py b/misc/build_helpers/run_trial.py index c8efc214..b99e45d9 100644 --- a/misc/build_helpers/run_trial.py +++ b/misc/build_helpers/run_trial.py @@ -88,7 +88,7 @@ if not same: 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): + if not isinstance(cwd, unicode) and cwd.decode(sys.getfilesystemencoding(), 'replace') != cwdu: msg += ("However, this may be a false alarm because the current directory path\n" "is not representable in the filesystem encoding. This script needs to be\n" "run from the source directory to be tested, at a non-Unicode path.")