Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/astparser.py
diff options
context:
space:
mode:
authorGary Martin <gary@garycmartin.com>2011-08-16 15:31:03 (GMT)
committer Gary Martin <gary@garycmartin.com>2011-08-16 15:31:03 (GMT)
commitf12ff42d766b2877f7f2654d74d95a1f3edbb3e5 (patch)
treedddecc6ad155f2b2d5b24dedebdb0dbadbdd7419 /astparser.py
parent6d6b8f4d9c63989a269674b164a61cdea64c3155 (diff)
Fix code typo in astparser string. SL#3045
Diffstat (limited to 'astparser.py')
-rw-r--r--astparser.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/astparser.py b/astparser.py
index 56c2529..12506eb 100644
--- a/astparser.py
+++ b/astparser.py
@@ -499,7 +499,7 @@ class AstParser:
val = parent.__dict__[node.attr]
return val
except Exception, e:
- msg = _("Attribute '%s' does not exist)") % node.value
+ msg = _("Attribute '%s' does not exist") % node.value
raise RuntimeError(msg, ofs, ofs + len(node.value))
return None