]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
misc/build_helpers/run_trial.py: fix typo in last patch.
authordavid-sarah <david-sarah@jacaranda.org>
Sun, 31 Oct 2010 15:52:15 +0000 (08:52 -0700)
committerdavid-sarah <david-sarah@jacaranda.org>
Sun, 31 Oct 2010 15:52:15 +0000 (08:52 -0700)
misc/build_helpers/run_trial.py

index c8efc214530b13677788e32e246e4cc06993b0ed..b99e45d92a21334ec613e0cd4f1c41b380bfff50 100644 (file)
@@ -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.")