From f7ff1dd521ca11752818fc8c894faf7098f48fe3 Mon Sep 17 00:00:00 2001 From: Akira Baruah Date: Mon, 8 May 2017 14:58:53 -0700 Subject: [PATCH] cpplint: fix Python 2 import name collision using `absolute_import` --- waflib/extras/cpplint.py | 1 + 1 file changed, 1 insertion(+) diff --git a/waflib/extras/cpplint.py b/waflib/extras/cpplint.py index ab5d5eba..a7b37243 100644 --- a/waflib/extras/cpplint.py +++ b/waflib/extras/cpplint.py @@ -35,6 +35,7 @@ When using this tool, the wscript will look like: bld(features='cpplint', source=bld.path.ant_glob('**/*.hpp')) ''' +from __future__ import absolute_import import sys, re import logging import threading