[orca/gnome-3-6] Fix for bug 687239 - Traceback seen in Python 3.3 when there are no settings saved
- From: Joanmarie Diggs <joanied src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [orca/gnome-3-6] Fix for bug 687239 - Traceback seen in Python 3.3 when there are no settings saved
- Date: Wed, 14 Nov 2012 21:24:49 +0000 (UTC)
commit b1612f3990df643d124414808c0007d5fb8bc73e
Author: Joanmarie Diggs <jdiggs igalia com>
Date: Tue Oct 30 20:13:21 2012 -0400
Fix for bug 687239 - Traceback seen in Python 3.3 when there are no settings saved
src/orca/speech.py | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/speech.py b/src/orca/speech.py
index 308479c..1961ecd 100644
--- a/src/orca/speech.py
+++ b/src/orca/speech.py
@@ -82,7 +82,7 @@ def _initSpeechServer(moduleName, speechServerInfo):
factory = None
try:
- factory = importlib.import_module(moduleName)
+ factory = importlib.import_module('orca.%s' % moduleName)
except:
debug.printException(debug.LEVEL_SEVERE)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]