3138 if fpath.exists(): |
3138 if fpath.exists(): |
3139 res = EricMessageBox.yesNo( |
3139 res = EricMessageBox.yesNo( |
3140 self.ui, |
3140 self.ui, |
3141 self.tr("Save File"), |
3141 self.tr("Save File"), |
3142 self.tr("""<p>The file <b>{0}</b> already exists.""" |
3142 self.tr("""<p>The file <b>{0}</b> already exists.""" |
3143 """ Overwrite it?</p>""").format(str(fpath)), |
3143 """ Overwrite it?</p>""").format(fpath), |
3144 icon=EricMessageBox.Warning) |
3144 icon=EricMessageBox.Warning) |
3145 if not res: |
3145 if not res: |
3146 return False |
3146 return False |
3147 |
3147 |
3148 self.name = fpath.stem() |
3148 self.name = fpath.stem() |