58 QCoreApplication.translate( |
58 QCoreApplication.translate( |
59 'Exporter', "Export source"), |
59 'Exporter', "Export source"), |
60 QCoreApplication.translate( |
60 QCoreApplication.translate( |
61 'Exporter', |
61 'Exporter', |
62 "<p>The file <b>{0}</b> already exists." |
62 "<p>The file <b>{0}</b> already exists." |
63 " Overwrite it?</p>").format(str(fpath)), |
63 " Overwrite it?</p>").format(fpath), |
64 icon=EricMessageBox.Warning) |
64 icon=EricMessageBox.Warning) |
65 if not res: |
65 if not res: |
66 return "" |
66 return "" |
67 |
67 |
68 return str(fpath) |
68 return str(fpath) |