diff options
Diffstat (limited to 'vb/makedist.py')
-rwxr-xr-x | vb/makedist.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vb/makedist.py b/vb/makedist.py index 75a214ffa1d..70996000c24 100755 --- a/vb/makedist.py +++ b/vb/makedist.py @@ -61,7 +61,7 @@ def sedFile(path, patt, replace): dstLines = [] for x in srcLines: - dstLines.append(re.sub(patt, replace, x)) + dstLines.append(re.sub(patt, replace, x)) src.close() dst = open(path, "w") @@ -195,7 +195,7 @@ hintPathReplace = r'\1IceCS-' + version + r'\3' projectFiles = find(os.path.join("icevb", "demo"), "*.vbproj") for x in projectFiles: if not x.endswith("D.vbproj"): - sedFile(x, hintPathSearch, hintPathReplace) + sedFile(x, hintPathSearch, hintPathReplace) # # Create source archives. |