summaryrefslogtreecommitdiff
path: root/docs/tutorial/lbscr.py
diff options
context:
space:
mode:
authorIan Ward <ian@excess.org>2012-07-21 15:12:27 -0400
committerIan Ward <ian@excess.org>2012-07-21 15:12:27 -0400
commit6dc4f282fbd0fa83cd4cc6b7d7a7ce1bca638ff3 (patch)
tree5587df1cd0d77122dffed707551c91e5d171707a /docs/tutorial/lbscr.py
parent527ddf8d0f820d79e741271b86cf3c5c95a4fb2e (diff)
downloadurwid-6dc4f282fbd0fa83cd4cc6b7d7a7ce1bca638ff3.tar.gz
add Makefile for generating tutorial screenshots
--HG-- branch : feature-sphinx
Diffstat (limited to 'docs/tutorial/lbscr.py')
-rw-r--r--docs/tutorial/lbscr.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/lbscr.py b/docs/tutorial/lbscr.py
index c2c3b53..b7af105 100644
--- a/docs/tutorial/lbscr.py
+++ b/docs/tutorial/lbscr.py
@@ -15,10 +15,10 @@ palette = [('header', 'white', 'black'),
content = urwid.SimpleListWalker([
urwid.AttrMap(w, None, 'reveal focus') for w in [
urwid.Text(u"This is a text string that is fairly long"),
- urwid.Divider(u"-"),
+ urwid.Divider(u"-"),] + [
urwid.Text(u"Short one"),
urwid.Text(u"Another"),
- urwid.Divider(u"-"),
+ urwid.Divider(u"-"), ] * 10 + [
urwid.Text(u"What could be after this?"),
urwid.Text(u"The end."),]])
listbox = urwid.ListBox(content)