Fixed a bug in the file exporters. eric7

Fri, 17 Mar 2023 11:29:09 +0100

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Fri, 17 Mar 2023 11:29:09 +0100
branch
eric7
changeset 9913
702ad0ef6b3f
parent 9912
c731e9bdd105
child 9914
3f2f0c4bc114
child 9915
fd5ff16632cb

Fixed a bug in the file exporters.

src/eric7/QScintilla/Exporters/ExporterBase.py file | annotate | diff | comparison | revisions
--- 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):
         """

eric ide

mercurial