Debugger/VariablesViewer.py

branch
Py2 comp.
changeset 2677
3d4277929fb3
parent 2525
8b507a9a2d40
parent 2617
5719edfddb4c
child 2717
34ef4eccdf6c
--- a/Debugger/VariablesViewer.py	Fri May 24 18:39:58 2013 +0200
+++ b/Debugger/VariablesViewer.py	Tue May 28 20:52:12 2013 +0200
@@ -53,7 +53,7 @@
                 # indicate skipped lines by <...> at the
                 # beginning and/or end
                 index = 0
-                while index < len(lines) and lines[index] == "":
+                while index < len(lines) - 1 and lines[index] == "":
                     index += 1
                 dvalue = ""
                 if index > 0:

eric ide

mercurial