Skip to content

Commit 46423a6

Browse files
committed
python
1 parent f5b654a commit 46423a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/bldutil.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __merge(target=None,source=None,env=None):
7272

7373
def __included(node,env,path):
7474
file = os.path.basename(str(node))
75-
file = re.sub('\.[^\.]+$','',file)
75+
file = re.sub(r'\.[^\.]+$','',file)
7676
contents = node.get_contents()
7777
includes = __include.findall(contents)
7878
if file in includes:

0 commit comments

Comments
 (0)