From 2d60bdf72662e74e923469c5b64030fe8cf5d1df Mon Sep 17 00:00:00 2001 From: Shlomi Fish Date: Sun, 5 May 2019 21:16:07 +0300 Subject: [PATCH] travis / py3 fix - str.replace. --- Makefile | 2 +- scripts/gen_individual_importing_tests.py | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 8f596bfa..402a7018 100644 --- a/Makefile +++ b/Makefile @@ -65,7 +65,7 @@ mo: pretest: @rm -f tests/individually-importing/*.py # To avoid stray files - python scripts/gen_individual_importing_tests.py + python3 scripts/gen_individual_importing_tests.py TEST_ENV_PATH = "`pwd`:`pwd`/tests/lib" TEST_ENV = PYTHONPATH="$$PYTHONPATH:"$(TEST_ENV_PATH) PERL5LIB="$$PERL5LIB:"$(TEST_ENV_PATH) diff --git a/scripts/gen_individual_importing_tests.py b/scripts/gen_individual_importing_tests.py index a84923ed..2a8b6789 100644 --- a/scripts/gen_individual_importing_tests.py +++ b/scripts/gen_individual_importing_tests.py @@ -4,7 +4,6 @@ import os import os.path import re -import string from sys import platform IS_MAC = (platform == "darwin") @@ -15,8 +14,7 @@ for d, _, files in os.walk("pysollib"): for f in files: if re.search("\\.py$", f): module_names.append( - string.replace(d + "/" + - re.sub("\\.py$", "", f), "/", ".")) + (d + "/" + re.sub("\\.py$", "", f)).replace("/", ".")) module_names.sort() for module_name in module_names: