Made it so that absolute paths are replaced with relative if they are already in package.json.
This commit is contained in:
parent
9351b5e556
commit
7e34bb2dd3
1 changed files with 1 additions and 1 deletions
2
main.py
2
main.py
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue