[Sugar-devel] [PATCH Browse] Catch None value for url and set empty string in the URL entry #3476

Manuel Quiñones manuq at laptop.org
Fri Apr 27 09:19:08 EDT 2012


Signed-off-by: Manuel Quiñones <manuq at laptop.org>
---
 webtoolbar.py |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/webtoolbar.py b/webtoolbar.py
index 654f720..b49cf5a 100644
--- a/webtoolbar.py
+++ b/webtoolbar.py
@@ -365,7 +365,10 @@ class PrimaryToolbar(ToolbarBase):
             self.entry.set_progress_fraction(progress)
 
     def _set_address(self, uri):
-        self.entry.props.address = uri
+        if uri is None:
+            self.entry.props.address = ''
+        else:
+            self.entry.props.address = uri
 
     def _set_title(self, title):
         self.entry.props.title = title
-- 
1.7.7.6



More information about the Sugar-devel mailing list