From 0aab5f8300aaa18666bab748f457ccf295f68f52 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Fri, 27 Apr 2012 13:16:41 +0000 Subject: Catch None value for url and set empty string in the URL entry #3476 Signed-off-by: Manuel QuiƱones Acked-by: Simon Schampijer --- 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 -- cgit v0.9.1