summaryrefslogtreecommitdiff
path: root/grc/gui/Dialogs.py
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2016-10-21 11:52:58 -0700
committerJohnathan Corgan <johnathan@corganlabs.com>2016-10-21 11:52:58 -0700
commit49d36df28d26abcd80b31f5e470fb57b33e77c14 (patch)
tree6c2a0392d11f2327138d4d1a462fac44cf2b26dd /grc/gui/Dialogs.py
parent261dcbe6604a3074429002ea5da8ca67d6fa95db (diff)
parentd4bb541ec1ec93446ecfa53948a1a6f995fffb64 (diff)
Merge branch 'master' into next
Diffstat (limited to 'grc/gui/Dialogs.py')
-rw-r--r--grc/gui/Dialogs.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/grc/gui/Dialogs.py b/grc/gui/Dialogs.py
index 1d114356c8..83ad9651b2 100644
--- a/grc/gui/Dialogs.py
+++ b/grc/gui/Dialogs.py
@@ -72,7 +72,7 @@ class TextDisplay(SimpleTextDisplay):
# for each \b delete one char from the buffer
back_count = 0
start_iter = self.get_buffer().get_end_iter()
- while line[back_count] == '\b':
+ while len(line) > back_count and line[back_count] == '\b':
# stop at the beginning of a line
if not start_iter.starts_line(): start_iter.backward_char()
back_count += 1