rename: is_build -> built (short for 'was built' or 'has been built', but just 'is build' doesn't make sense)

This commit is contained in:
Christopher Denter 2011-01-29 15:29:00 +01:00
parent 4788f4a12c
commit 3c308c9e9c
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@ class App(EventDispatcher):
self.register_event_type('on_stop')
self.options = kwargs
self.use_default_uxl = kwargs.get('use_default_uxl', True)
self.is_build = False
self.built = False
self.root = None
def build(self):
@ -47,7 +47,7 @@ class App(EventDispatcher):
def run(self):
'''Launch the app in standalone mode
'''
if not self.is_build:
if not self.built:
root = self.build()
if root:
self.root = root