Thu, 05 Dec 2013 18:46:35 +0100
Fixed an issue in Project.py causing a crash when creating a new project.
Project/Project.py | file | annotate | diff | comparison | revisions |
--- a/Project/Project.py Tue Dec 03 18:44:38 2013 +0100 +++ b/Project/Project.py Thu Dec 05 18:46:35 2013 +0100 @@ -2233,6 +2233,8 @@ """Would you like to edit the VCS command""" """ options?""")) if vcores: + from VCS.CommandOptionsDialog import \ + VcsCommandOptionsDialog codlg = VcsCommandOptionsDialog(self.vcs) if codlg.exec_() == QDialog.Accepted: self.vcs.vcsSetOptions(codlg.getOptions())