Skip to content

Commit fdfbde8

Browse files
committed
Move DS_5 into its own directory
1 parent 13b2a95 commit fdfbde8

19 files changed

+5
-4
lines changed

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

Lines changed: 5 additions & 4 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 basename
1918

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

2122
class DS5_5(Exporter):
2223
NAME = 'DS5'
@@ -64,6 +65,6 @@ def generate(self):
6465
target = self.target.lower()
6566

6667
# Project file
67-
self.gen_file('ds5_5_%s.project.tmpl' % target, ctx, '.project')
68-
self.gen_file('ds5_5_%s.cproject.tmpl' % target, ctx, '.cproject')
69-
self.gen_file('ds5_5_%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)
68+
self.gen_file('ds5_5/%s.project.tmpl' % target, ctx, '.project')
69+
self.gen_file('ds5_5/%s.cproject.tmpl' % target, ctx, '.cproject')
70+
self.gen_file('ds5_5/%s.launch.tmpl' % target, ctx, 'ds5_%s.launch' % target)

0 commit comments

Comments
 (0)