[orca] Fixed wrong position of parentheses with _()



commit 491c84081cd459ab5e2210a6b89ca00482845c39
Author: Willie Walker <william walker sun com>
Date:   Wed Jan 20 09:18:45 2010 -0500

    Fixed wrong position of parentheses with _()

 src/orca/default.py |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/src/orca/default.py b/src/orca/default.py
index f68ac7c..8649189 100644
--- a/src/orca/default.py
+++ b/src/orca/default.py
@@ -616,6 +616,7 @@ class Script(script.Script):
                 # wrap across lines if necessary).  This command will
                 # cause Orca to speak information about the current character
                 # Like its unicode value and other relevant information
+                #
                 _("Speaks unicode value of the current flat review character."))
 
 
@@ -5695,7 +5696,7 @@ class Script(script.Script):
         # reported to the user.  The value is the unicode number value
         # of this character in hex.
         #
-        speech.speak(_("Unicode %s" % self.getUnicodeValueString(character)))
+        speech.speak(_("Unicode %s") % self.getUnicodeValueString(character))
 
     def getUnicodeValueString(self, character):
         """ Returns a four hex digit representaiton of the given character



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]