From 5b852a1f84dfc4115df2f083a8db398c17faa47f Mon Sep 17 00:00:00 2001 From: Igmar Palsenberg Date: Fri, 15 Feb 2013 12:36:53 +0100 Subject: [PATCH] [#1646] Play idealize generates wrong paths : We are missing a slash --- framework/pym/play/commands/intellij.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/pym/play/commands/intellij.py b/framework/pym/play/commands/intellij.py index a4dd5cdaf3..bf1c3bf7d9 100644 --- a/framework/pym/play/commands/intellij.py +++ b/framework/pym/play/commands/intellij.py @@ -46,10 +46,10 @@ def execute(**kargs): srcpath = os.path.join(module, 'src') lXML += ' \n \n \n' % (module, os.path.join(module, 'app').replace('\\', '/')) if os.path.exists(srcpath): - msXML += ' \n' % (app.toRelative(srcpath).replace('\\', '/')) + msXML += ' \n' % (app.toRelative(srcpath).replace('\\', '/')) if os.path.exists(libpath): - mlXML += ' \n' % (app.toRelative(libpath).replace('\\', '/')) - jdXML += ' \n' % (app.toRelative(libpath).replace('\\', '/')) + mlXML += ' \n' % (app.toRelative(libpath).replace('\\', '/')) + jdXML += ' \n' % (app.toRelative(libpath).replace('\\', '/')) replaceAll(imlFile, r'%LINKS%', lXML) replaceAll(imlFile, r'%MODULE_LINKS%', mlXML) replaceAll(imlFile, r'%MODULE_LIB_CLASSES%', msXML)