From 7acfbd070fa207dff309383da6e743ad2b9843c3 Mon Sep 17 00:00:00 2001 From: Sascha Silbe Date: Fri, 15 Oct 2010 19:14:59 +0000 Subject: style cleanup: prefer ' for strings Tomeu prefers ' for strings, so let's use it wherever we don't have a good reason to use ". Reviewed-by: James Cameron Acked-by: Simon Schampijer CC: Aleksey Lim --- (limited to 'src/sugar/bundle/contentbundle.py') diff --git a/src/sugar/bundle/contentbundle.py b/src/sugar/bundle/contentbundle.py index 48e05a1..5411a0f 100644 --- a/src/sugar/bundle/contentbundle.py +++ b/src/sugar/bundle/contentbundle.py @@ -97,7 +97,7 @@ class ContentBundle(Bundle): self._l10n = False else: raise MalformedBundleException( - 'Content bundle %s has invalid l10n key "%s"' % + 'Content bundle %s has invalid l10n key %r' % (self._path, l10n)) else: raise MalformedBundleException( @@ -196,7 +196,7 @@ class ContentBundle(Bundle): return os.path.join(self.get_root_dir(), self._activity_start) def get_start_uri(self): - return "file://" + urllib.pathname2url(self.get_start_path()) + return 'file://' + urllib.pathname2url(self.get_start_path()) def get_bundle_id(self): # TODO treat ContentBundle in special way -- cgit v0.9.1