Fixed an issue in the editor showing warning messages via the margin.

Sat, 28 Sep 2013 20:12:12 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sat, 28 Sep 2013 20:12:12 +0200
changeset 2955
e9aeafe80329
parent 2954
bf0215fe12d1
child 2956
615dbd8a696a

Fixed an issue in the editor showing warning messages via the margin.

QScintilla/Editor.py file | annotate | diff | comparison | revisions
diff -r bf0215fe12d1 -r e9aeafe80329 QScintilla/Editor.py
--- a/QScintilla/Editor.py	Sat Sep 28 20:07:36 2013 +0200
+++ b/QScintilla/Editor.py	Sat Sep 28 20:12:12 2013 +0200
@@ -5331,7 +5331,7 @@
             if self.markerLine(handle) == line:
                 E5MessageBox.warning(self,
                     self.trUtf8("Warning"),
-                    '\n'.join(self.warnings[handle]))
+                    '\n'.join([w[0] for w in self.warnings[handle]]))
                 break
         else:
             E5MessageBox.warning(self,

eric ide

mercurial