Fixed an issue in the Variable Viewer.

Wed, 24 Apr 2013 19:14:22 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Wed, 24 Apr 2013 19:14:22 +0200
changeset 2617
5719edfddb4c
parent 2616
954b4069325b
child 2618
bc7339209500
child 2620
a3be952f2ae4

Fixed an issue in the Variable Viewer.

Debugger/VariablesViewer.py file | annotate | diff | comparison | revisions
--- a/Debugger/VariablesViewer.py	Wed Apr 24 19:00:19 2013 +0200
+++ b/Debugger/VariablesViewer.py	Wed Apr 24 19:14:22 2013 +0200
@@ -51,7 +51,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