Skip to content
Snippets Groups Projects
Commit b02132f9 authored by Oz Linden's avatar Oz Linden
Browse files

missing paren in dictionary copying

parent a167b551
No related branches found
No related tags found
No related merge requests found
......@@ -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"):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment