From 1e33ae54e43b781d22b613a92a3a0a169454b1f6 Mon Sep 17 00:00:00 2001 From: debugtalk Date: Sat, 26 Oct 2019 00:14:02 +0800 Subject: [PATCH] fix: missed import OrderedDict --- httprunner/response.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/httprunner/response.py b/httprunner/response.py index 9cbadc1d..8be64ca1 100644 --- a/httprunner/response.py +++ b/httprunner/response.py @@ -1,11 +1,10 @@ -# encoding: utf-8 - import re +from collections import OrderedDict import jsonpath from httprunner import exceptions, logger, utils -from httprunner.compat import OrderedDict, basestring, is_py2 +from httprunner.compat import basestring, is_py2 text_extractor_regexp_compile = re.compile(r".*\(.*\).*")