[pypy-commit] pypy default: typo

mattip pypy.commits at gmail.com
Wed Dec 4 11:12:29 EST 2019


Author: Matti Picus <matti.picus at gmail.com>
Branch: 
Changeset: r98231:94907f4adb70
Date: 2019-12-04 18:11 +0200
http://bitbucket.org/pypy/pypy/changeset/94907f4adb70/

Log:	typo

diff --git a/pypy/test_all.py b/pypy/test_all.py
--- a/pypy/test_all.py
+++ b/pypy/test_all.py
@@ -28,7 +28,7 @@
     # Always remove the cached files
     # Before translation this is done via "py.path.local(CACHE_DIR).remove()"
     print 'removing %s/rpython/_cache' % toplevel
-    shutil.rmtree('%s/rpython/_cache', ignore_errors=True)
+    shutil.rmtree('%s/rpython/_cache' % toplevel, ignore_errors=True)
     # Add toplevel repository dir to sys.path
     sys.path.insert(0, toplevel)
     import pytest


More information about the pypy-commit mailing list