Increment tab number in group name, so they don't start at zero. Closes LP #382156

This commit is contained in:
Chris Jones 2009-06-06 02:00:40 +01:00
parent 20b25c6c5d
commit 78594bfd62
1 changed files with 1 additions and 1 deletions

View File

@ -1439,7 +1439,7 @@ text/plain
groupname = notebooktablabel.get_title()
if groupname == "":
groupname = "Tab %d" % pagenum
groupname = "Tab %d" % (pagenum + 1)
self.add_group(groupname)
for term in terms: