From 1fad717aaae6382c952c120425f1297eeafea697 Mon Sep 17 00:00:00 2001 From: david-sarah Date: Sun, 25 Jul 2010 11:20:08 -0700 Subject: [PATCH] test_runner.py: change to code for locating the bin/tahoe script that was missed when rebasing the patch for #1074. --- src/allmydata/test/test_runner.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/allmydata/test/test_runner.py b/src/allmydata/test/test_runner.py index b5459b48..6e85a20b 100644 --- a/src/allmydata/test/test_runner.py +++ b/src/allmydata/test/test_runner.py @@ -14,8 +14,8 @@ from allmydata.test import common_util import allmydata bintahoe = os.path.join(os.path.dirname(os.path.dirname(os.path.dirname(allmydata.__file__))), 'bin', 'tahoe') -if sys.platform == "win32": # TODO: should this include cygwin? - bintahoe += ".exe" +if sys.platform == "win32": + bintahoe += ".pyscript" class SkipMixin: -- 2.45.2