From: duplo Date: Thu, 2 Apr 2009 15:38:36 +0000 (+0000) Subject: Correct svn:ignore X-Git-Tag: 2.1.0~214 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;h=ddfbc9df15a5a68f18913995533b9ca9153caaae;p=bertos.git Correct svn:ignore git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2468 38d2e660-2303-0410-9eaa-f027e97ec537 --- 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)