Fix lint warning with anomalous backslash

This commit is contained in:
Ivan Kravets
2014-09-30 20:58:30 +03:00
parent 2a7e67b8e4
commit 1c4b97c2f2

View File

@ -189,7 +189,7 @@ def ConvertInotoCpp(env):
# print includes, prototypes
# disable previous includes
ino_contents = re_includes.sub("//\g<1>", ino_contents)
ino_contents = re_includes.sub(r"//\1", ino_contents)
# create new temporary C++ valid file
with open(cppfile, "w") as f: