eric6/Project/PropertiesDialog.py

changeset 8047
b5594178c7fa
parent 7998
cd41c844862f
child 8143
2c730d5fd177
equal deleted inserted replaced
8045:4d5209dc6eb4 8047:b5594178c7fa
287 """ 287 """
288 self.project.ppath = os.path.abspath(self.dirPicker.text()) 288 self.project.ppath = os.path.abspath(self.dirPicker.text())
289 fn = self.nameEdit.text() 289 fn = self.nameEdit.text()
290 if fn: 290 if fn:
291 self.project.name = fn 291 self.project.name = fn
292 fn = "{0}.e4p".format(fn) 292 fn = "{0}.epj".format(fn)
293 self.project.pfile = os.path.join(self.project.ppath, fn) 293 self.project.pfile = os.path.join(self.project.ppath, fn)
294 else: 294 else:
295 self.project.pfile = "" 295 self.project.pfile = ""
296 self.project.pdata["VERSION"] = self.versionEdit.text() 296 self.project.pdata["VERSION"] = self.versionEdit.text()
297 fn = self.mainscriptPicker.text() 297 fn = self.mainscriptPicker.text()

eric ide

mercurial