[dts] [PATCH] framework: Use regualr expression instead of regression in import comment.

Rami Rosen rami.rosen at intel.com
Fri Apr 1 13:52:18 CEST 2016


"import re" implies using python Regular Expressions module and 
not regression module. This patch fixed this comment.

Signed-off-by: Rami Rosen <rami.rosen at intel.com>
---
 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



More information about the dts mailing list