Fri, 17 Mar 2023 11:29:09 +0100
Fixed a bug in the file exporters.
--- a/src/eric7/QScintilla/Exporters/ExporterBase.py Thu Mar 16 12:10:12 2023 +0100 +++ b/src/eric7/QScintilla/Exporters/ExporterBase.py Fri Mar 17 11:29:09 2023 +0100 @@ -67,7 +67,9 @@ if not res: return "" - return str(fpath) + fn = str(fpath) + + return fn def exportSource(self): """