try/else pass for pygtk.require

This commit is contained in:
Marcos Pinto 2008-01-20 02:58:41 +00:00
parent d965adff82
commit bb86fefe66
1 changed files with 4 additions and 1 deletions

View File

@ -32,7 +32,10 @@
# statement from all source files in the program, then also delete it here.
import pygtk
pygtk.require('2.0')
try:
pygtk.require('2.0')
else:
pass
import gtk, gtk.glade
import gettext
import locale