From 6901af4e130dd3e11c09e92d5229fa2d95b52788 Mon Sep 17 00:00:00 2001 From: Manuel QuiƱones Date: Fri, 12 Oct 2012 13:17:17 +0000 Subject: Remove space in UserAgent - SL #3631 This is safer because the space could be used for separating the parts of the user agent. The change in ASLO has been made: http://git.sugarlabs.org/slo-activities/mainline/commit/f0299da4794371ac5cc4df15be2e8b965313ecf8 Signed-off-by: Manuel QuiƱones --- diff --git a/browser.py b/browser.py index 4488580..8b3463a 100644 --- a/browser.py +++ b/browser.py @@ -465,7 +465,7 @@ class Browser(WebKit.WebView): web_settings = self.get_settings() # Add SugarLabs user agent: - identifier = ' Sugar Labs/' + self.CURRENT_SUGAR_VERSION + identifier = ' SugarLabs/' + self.CURRENT_SUGAR_VERSION web_settings.props.user_agent += identifier # Change font size based in the GtkSettings font size. The -- cgit v0.9.1