We need to not bail out in sbuild
This commit is contained in:
parent
92b2b43e92
commit
90db9016bd
1
setup.py
1
setup.py
|
@ -16,6 +16,7 @@ def import_terminator():
|
|||
exec module_file in module.__dict__
|
||||
return module
|
||||
|
||||
TERMINATOR_BUILD = True
|
||||
APP_VERSION = import_terminator().APP_VERSION
|
||||
|
||||
PO_DIR = 'po'
|
||||
|
|
|
@ -65,10 +65,10 @@ else:
|
|||
try:
|
||||
import gobject, gtk, pango
|
||||
except:
|
||||
err (_("You need to install the python bindings for " \
|
||||
"gobject, gtk and pango to run Terminator."))
|
||||
sys.exit(1)
|
||||
|
||||
if not TERMINATOR_BUILD:
|
||||
err (_("You need to install the python bindings for " \
|
||||
"gobject, gtk and pango to run Terminator."))
|
||||
sys.exit(1)
|
||||
|
||||
# import a library for viewing URLs
|
||||
try:
|
||||
|
|
Loading…
Reference in New Issue