diff options
author | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-01 23:49:35 +0000 |
---|---|---|
committer | fiddlosopher <fiddlosopher@788f1e2b-df1e-0410-8736-df70ead52e1b> | 2008-08-01 23:49:35 +0000 |
commit | 6a0004acba8df20fb5132874feb0b8b7457eea58 (patch) | |
tree | 1aa9424124fa6f1a8f76ecea83b9c37f8b613631 | |
parent | e371db97d7de5188b89b9f77749b47c20ef958de (diff) | |
download | pandoc-6a0004acba8df20fb5132874feb0b8b7457eea58.tar.gz |
Removed superfluous copyFile from Text/Pandoc/ODT.hs.
git-svn-id: https://pandoc.googlecode.com/svn/trunk@1367 788f1e2b-df1e-0410-8736-df70ead52e1b
-rw-r--r-- | Text/Pandoc/ODT.hs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Text/Pandoc/ODT.hs b/Text/Pandoc/ODT.hs index 6c0cca0a9..3e5b2a158 100644 --- a/Text/Pandoc/ODT.hs +++ b/Text/Pandoc/ODT.hs @@ -61,7 +61,6 @@ saveOpenDocumentAsODT destinationODTPath sourceDirRelative xml = do "Windows: See http://gnuwin32.sourceforge.net/packages/zip.htm" withTempDir "pandoc-odt" $ \tempDir -> do let tempODT = tempDir </> "reference.odt" - copyFile "odt-styles/reference.odt" tempODT B.writeFile tempODT $ B.pack $(contentsOf $ "odt-styles" </> "reference.odt") createDirectory $ tempDir </> "Pictures" xml' <- handlePictures tempODT sourceDirRelative xml |