Skip to content

Commit 60dab4d

Browse files
theotherjimmyadbridge
authored andcommitted
Move coide into its own directory
1 parent a9e4180 commit 60dab4d

34 files changed

+3
-2
lines changed

tools/export/coide.py renamed to tools/export/coide/__init__.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,10 @@
1414
See the License for the specific language governing permissions and
1515
limitations under the License.
1616
"""
17-
from exporters import Exporter
1817
from os.path import splitext, basename
1918

19+
from tools.export.exporters import Exporter
20+
2021

2122
class CoIDE(Exporter):
2223
NAME = 'CoIDE'
@@ -112,4 +113,4 @@ def generate(self):
112113
target = self.target.lower()
113114

114115
# Project file
115-
self.gen_file('coide_%s.coproj.tmpl' % target, ctx, '%s.coproj' % self.project_name)
116+
self.gen_file('coide/%s.coproj.tmpl' % target, ctx, '%s.coproj' % self.project_name)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)