diff --git a/terminatorlib/notebook.py b/terminatorlib/notebook.py index a4db1096..57c3725a 100755 --- a/terminatorlib/notebook.py +++ b/terminatorlib/notebook.py @@ -145,7 +145,7 @@ class Notebook(Container, gtk.Notebook): def get_children(self): """Return an ordered list of our children""" children = [] - for page in xrange(0,self.get_n_pages() - 1): + for page in xrange(0,self.get_n_pages()): children.append(self.get_nth_page(page)) return(children)