573 fname = Utilities.toNativeSeparators(fname) |
573 fname = Utilities.toNativeSeparators(fname) |
574 |
574 |
575 try: |
575 try: |
576 with open(fname, "w", encoding="utf-8") as f: |
576 with open(fname, "w", encoding="utf-8") as f: |
577 f.write(txt) |
577 f.write(txt) |
578 except IOError as err: |
578 except OSError as err: |
579 E5MessageBox.critical( |
579 E5MessageBox.critical( |
580 self, |
580 self, |
581 self.tr("Error saving Chat"), |
581 self.tr("Error saving Chat"), |
582 self.tr("""<p>The chat contents could not be""" |
582 self.tr("""<p>The chat contents could not be""" |
583 """ written to <b>{0}</b></p>""" |
583 """ written to <b>{0}</b></p>""" |