X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=wizard%2Fplugins%2Fcodelite_project.py;h=98737686af0055e612384fb005c7d9c31bc2211e;hb=fbf62c0ec1a7b207919a77ee953a7d3f6ef249b4;hp=c55c7dc4dcbee9f45ac41f8f9226b157eb377259;hpb=17c1195c6f3579b1f6600c9a9735c7729ae27ecc;p=bertos.git diff --git a/wizard/plugins/codelite_project.py b/wizard/plugins/codelite_project.py index c55c7dc4..98737686 100644 --- a/wizard/plugins/codelite_project.py +++ b/wizard/plugins/codelite_project.py @@ -48,7 +48,7 @@ def codeliteProjectGenerator(project_info): """ Returns the string rapresenting the codelite project. """ - template = open("cltemplates/bertos.project").read() + template = open("cltemplates/bertos.project", "r").read() filelist = "\n".join(clFiles(findSources(project_info.info("PROJECT_PATH")), project_info.info("PROJECT_PATH"))) while template.find("$filelist") != -1: template = template.replace("$filelist", filelist) @@ -61,7 +61,7 @@ def codeliteWorkspaceGenerator(project_info): """ Returns the string rapresentig the codelite workspace. """ - template = open("cltemplates/bertos.workspace").read() + template = open("cltemplates/bertos.workspace", "r").read() project_name = os.path.basename(project_info.info("PROJECT_PATH")) while template.find("$project") != -1: template = template.replace("$project", project_name)