From: Facundo Batista Date: Sun, 22 Jun 2008 16:11:34 +0000 (+0000) Subject: Trying to see if the @ in a path is causing the issue in the X-Git-Tag: v2.6b2~193 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b8242ba6b1ee692d3241c1035d77cd2889cacacc;p=thirdparty%2FPython%2Fcpython.git Trying to see if the @ in a path is causing the issue in the shutil.rmtree() in the trunk.loewis-sun buildbot. --- diff --git a/Lib/test/test_posix.py b/Lib/test/test_posix.py index 188f4631ac88..a6f02eb1fe54 100644 --- a/Lib/test/test_posix.py +++ b/Lib/test/test_posix.py @@ -236,7 +236,7 @@ class PosixTester(unittest.TestCase): if hasattr(posix, 'getcwd'): dirname = 'getcwd-test-directory-0123456789abcdef-01234567890abcdef' curdir = os.getcwd() - base_path = os.path.abspath(test_support.TESTFN) + '.getcwd' + base_path = os.path.abspath(test_support.TESTFN[1:]) + '.getcwd' try: os.mkdir(base_path)