Made it so that absolute paths are replaced with relative if they are already in package.json.

This commit is contained in:
Joey Payne 2014-04-06 22:39:43 -06:00
commit 7e34bb2dd3

View file

@ -908,7 +908,7 @@ class MainWindow(QtGui.QWidget):
def convert_val_to_str(self, val):
if isinstance(val, (list,tuple)):
return ', '.join(val)
return str(val)
return str(val).replace(self.projectDir()+os.path.sep,'')
def copyFilesToProjectFolder(self):
old_dir = CWD