From 58947438138318eefada1a6974d718a8ea9d7dd8 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Tue, 19 Oct 2004 03:49:19 +0000 Subject: [PATCH] fix image range git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@29981 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- wxPython/demo/Listbook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wxPython/demo/Listbook.py b/wxPython/demo/Listbook.py index cb620fe83d..995c25aa12 100644 --- a/wxPython/demo/Listbook.py +++ b/wxPython/demo/Listbook.py @@ -36,7 +36,7 @@ class TestLB(wx.Listbook): # make an image list using the BlomXX images il = wx.ImageList(32, 32) - for x in range(1, 15): + for x in range(1, 16): f = getattr(images, 'getBlom%02dBitmap' % x) bmp = f() il.Add(bmp) -- 2.47.2