From ffe3504e0aba59f7bf7ae65e8f427647f3a4600a Mon Sep 17 00:00:00 2001 From: Sayamindu Dasgupta Date: Mon, 08 Feb 2010 18:16:22 +0000 Subject: Should be and, and not or --- diff --git a/src/sugar/activity/i18n.py b/src/sugar/activity/i18n.py index e45fc19..a91b912 100644 --- a/src/sugar/activity/i18n.py +++ b/src/sugar/activity/i18n.py @@ -117,7 +117,7 @@ def get_locale_path(bundle_id): gconf_client = gconf.client_get_default() package_dir = gconf_client.get_string("/desktop/sugar/i18n/langpackdir") - if package_dir is not None or package_dir is not '': + if package_dir is not None and package_dir is not '': candidate_dirs[package_dir] = 1 candidate_dirs[os.path.join(sys.prefix, 'share', 'locale')] = 0 -- cgit v0.9.1