From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 3774929D2 for ; Fri, 1 Apr 2016 13:51:28 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga102.fm.intel.com with ESMTP; 01 Apr 2016 04:51:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.24,427,1455004800"; d="scan'208";a="936206407" Received: from imail001.iil.intel.com ([10.184.207.12]) by fmsmga001.fm.intel.com with ESMTP; 01 Apr 2016 04:51:27 -0700 Received: from rr.iil.intel.com (rr.iil.intel.com [143.185.141.70]) by imail001.iil.intel.com with ESMTP id u31BpNV4022711; Fri, 1 Apr 2016 14:51:23 +0300 From: Rami Rosen To: yong.liu@intel.com Cc: dts@dpdk.org, Rami Rosen Date: Fri, 1 Apr 2016 14:52:18 +0300 Message-Id: <1459511538-23492-1-git-send-email-rami.rosen@intel.com> X-Mailer: git-send-email 2.5.5 Subject: [dts] [PATCH] framework: Use regualr expression instead of regression in import comment. X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 01 Apr 2016 11:51:28 -0000 "import re" implies using python Regular Expressions module and not regression module. This patch fixed this comment. Signed-off-by: Rami Rosen --- framework/dts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/dts.py b/framework/dts.py index 6c3808b..7310bda 100644 --- a/framework/dts.py +++ b/framework/dts.py @@ -29,7 +29,7 @@ # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -import re # regression module +import re # regular expressions module import ConfigParser # config parse module import os # operation system module import texttable # text format -- 2.5.5