summaryrefslogtreecommitdiff
path: root/functionaltests/cli/v1/behaviors/base_behaviors.py
diff options
context:
space:
mode:
Diffstat (limited to 'functionaltests/cli/v1/behaviors/base_behaviors.py')
-rw-r--r--functionaltests/cli/v1/behaviors/base_behaviors.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/functionaltests/cli/v1/behaviors/base_behaviors.py b/functionaltests/cli/v1/behaviors/base_behaviors.py
index 3420cee..aef9831 100644
--- a/functionaltests/cli/v1/behaviors/base_behaviors.py
+++ b/functionaltests/cli/v1/behaviors/base_behaviors.py
@@ -13,9 +13,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
+import io
import logging
import re
-import six
from barbicanclient import barbican
from functionaltests.common import config
@@ -84,8 +84,8 @@ class BaseBehaviors(object):
"""
try:
- self.cmdline_client.stdout = six.StringIO()
- self.cmdline_client.stderr = six.StringIO()
+ self.cmdline_client.stdout = io.StringIO()
+ self.cmdline_client.stderr = io.StringIO()
self.cmdline_client.run(argv)
except SystemExit:
pass