Protection from crash; display error
svn: r14377
This commit is contained in:
parent
07cfe16295
commit
ea74046a18
@ -929,7 +929,13 @@ class ViewManager(CLIManager):
|
||||
|
||||
# create view page and add to category notebook
|
||||
page.define_actions()
|
||||
page_display = page.get_display()
|
||||
try:
|
||||
page_display = page.get_display()
|
||||
except:
|
||||
import traceback
|
||||
print "ERROR: '%s' failed to create view" % pdata.name
|
||||
traceback.print_exc()
|
||||
continue
|
||||
page_display.show_all()
|
||||
page.post()
|
||||
page_no = self.notebook_cat[-1].append_page(page_display,
|
||||
|
Loading…
Reference in New Issue
Block a user