Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorflorent <florent.pigout@gmail.com>2011-08-27 22:55:10 (GMT)
committer florent <florent.pigout@gmail.com>2011-08-27 22:55:10 (GMT)
commit1d60cc141a1c13d3f7f60bf9ab171907bf8a6132 (patch)
tree742fec678fc4f889bc835339a7dc055c588db0d0
parent338f23520b11a1cba949ebfd47051920afce9fd8 (diff)
fix programming error
-rw-r--r--nutrinoweb/activity.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/nutrinoweb/activity.py b/nutrinoweb/activity.py
index 7762250..7722908 100644
--- a/nutrinoweb/activity.py
+++ b/nutrinoweb/activity.py
@@ -43,14 +43,14 @@ class NutrinoWebActivity(run.Server, activity.Activity):
# ..
if config.Config().get('activity>use-toolbar', type_=bool):
self.__init_toolbar()
- else
+ else:
pass
# ...
self.web_view = WebView()
self.set_canvas(self.web_view)
self.web_view.show()
# ...
- self.change_screen('nutrinoweb')
+ self.change_screen('main')
def get_toolbox(self):
return self._toolbox