diff options
Diffstat (limited to 'Text')
-rw-r--r-- | Text/Pandoc/ODT.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Text/Pandoc/ODT.hs b/Text/Pandoc/ODT.hs index 10cf1b7e2..f9e4dd8f1 100644 --- a/Text/Pandoc/ODT.hs +++ b/Text/Pandoc/ODT.hs @@ -46,7 +46,7 @@ saveOpenDocumentAsODT :: FilePath -- ^ Pathname of ODT file to be produced. -> String -- ^ OpenDocument XML contents. -> IO () saveOpenDocumentAsODT destinationODTPath sourceDirRelative xml = do - let refArchive = read $(makeZip "odt-styles") + let refArchive = read $(makeZip $ "data" </> "odt-styles") -- handle pictures let (newContents, pics) = case runParser pPictures [] "OpenDocument XML contents" xml of |