Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src/jarabe
diff options
context:
space:
mode:
authorJames Cameron <quozl@laptop.org>2010-06-02 06:30:29 (GMT)
committer Sascha Silbe <silbe@activitycentral.com>2011-02-11 19:32:43 (GMT)
commitfa76ea4639db82bb7a020d62b3f0f752e1325cf3 (patch)
treee3d490fbf696991a887892dd81156789c2d3d76e /src/jarabe
parent3749affee66a3beee8b9202316b7a6408053bd29 (diff)
simplify extension loading exception error
Discovered in shell logs of os240py, this exception was triggered due to the yet to be merged touchpad control panel extension. But the exception used incorrect grammar.
Diffstat (limited to 'src/jarabe')
-rw-r--r--src/jarabe/controlpanel/gui.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/jarabe/controlpanel/gui.py b/src/jarabe/controlpanel/gui.py
index 91792c9..2f55951 100644
--- a/src/jarabe/controlpanel/gui.py
+++ b/src/jarabe/controlpanel/gui.py
@@ -276,8 +276,7 @@ class ControlPanel(gtk.Window):
keywords.append(item)
options[item]['keywords'] = keywords
else:
- _logger.error('There is no CLASS constant specified'
- ' in the view file %r.', item)
+ _logger.error('no CLASS attribute in %r', item)
except Exception:
logging.exception('Exception while loading extension:')