238 """ options?""")) |
238 """ options?""")) |
239 else: |
239 else: |
240 vcores = False |
240 vcores = False |
241 if vcores: |
241 if vcores: |
242 from .CommandOptionsDialog import VcsCommandOptionsDialog |
242 from .CommandOptionsDialog import VcsCommandOptionsDialog |
243 codlg = VcsCommandOptionsDialog(self.project.vcs) |
243 codlg = VcsCommandOptionsDialog(vcs) |
244 if codlg.exec_() == QDialog.Accepted: |
244 if codlg.exec_() == QDialog.Accepted: |
245 vcs.vcsSetOptions(codlg.getOptions()) |
245 vcs.vcsSetOptions(codlg.getOptions()) |
246 |
246 |
247 # create the project directory if it doesn't exist already |
247 # create the project directory if it doesn't exist already |
248 if not os.path.isdir(projectdir): |
248 if not os.path.isdir(projectdir): |