From 230bd88928b562465edae925e6133aca2dac9fa0 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Thu, 27 Jun 2024 13:43:33 -0700 Subject: [PATCH] Import testtools.run more explicitly It seems that testtools does not import the run module into the root module namespace anymore. No worries, we can import testttols.run directly and all is well. Change-Id: Icba9253c1d29894cd5e53366ab619458c1a25f5e --- ttrun/cmd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ttrun/cmd.py b/ttrun/cmd.py index 123f91e..dd65f1b 100644 --- a/ttrun/cmd.py +++ b/ttrun/cmd.py @@ -20,7 +20,7 @@ import os import subprocess import sys -import testtools +import testtools.run def parse_arguments():