diff options
author | Oz Linden <oz@lindenlab.com> | 2012-04-19 05:08:19 -0700 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2012-04-19 05:08:19 -0700 |
commit | b02132f927c29187e1031f38ef8884f86f115132 (patch) | |
tree | 7ac50faa3940e10d616d50a6ead615d763fe02f0 | |
parent | a167b551843d64e9765075100fb278c2a5e8809c (diff) |
missing paren in dictionary copying
-rw-r--r-- | indra/newview/viewer_manifest.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/viewer_manifest.py b/indra/newview/viewer_manifest.py index 5f687f3ac7..7c0358311b 100644 --- a/indra/newview/viewer_manifest.py +++ b/indra/newview/viewer_manifest.py @@ -51,11 +51,11 @@ class ViewerManifest(LLManifest): self.exclude("*.svn*") self.path(src="../../scripts/messages/message_template.msg", dst="app_settings/message_template.msg") self.path(src="../../etc/message.xml", dst="app_settings/message.xml") + # add the pre-installed spell checking dictionaries dictdir = os.path.join(os.pardir, 'packages', 'dictionaries') - print "Trying dictionary relative to %s with %s" % (self.get_src_prefix(), dictdir); - self.path(src=dictdir, - dst=os.path.join("app_settings","dictionaries") + print "Trying dictionaries relative to %s with %s" % (self.get_src_prefix(), dictdir) + self.path(src=dictdir, dst=os.path.join("app_settings","dictionaries")) if self.is_packaging_viewer(): if self.prefix(src="app_settings"): |