diff options
| author | John MacFarlane <[email protected]> | 2021-08-22 21:42:31 -0700 |
|---|---|---|
| committer | John MacFarlane <[email protected]> | 2021-08-22 21:42:31 -0700 |
| commit | 66874b49a629fd03c78e070cdcf493e3c0c715f7 (patch) | |
| tree | 8f609bb73f246abc56685f0033d23d5e52dd2c19 | |
| parent | fcc9b89b02a0c42d3de94e497c7cdb8c10a1d249 (diff) | |
App: Use runSandboxed instead of runIO.
| -rw-r--r-- | src/Text/Pandoc/App.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Text/Pandoc/App.hs b/src/Text/Pandoc/App.hs index 66d659ba1..1c0d3d080 100644 --- a/src/Text/Pandoc/App.hs +++ b/src/Text/Pandoc/App.hs @@ -103,7 +103,7 @@ convertWithOpts opts = do istty <- liftIO $ queryTerminal stdOutput #endif - res <- runIO $ do + res <- runSandboxed $ do setTrace (optTrace opts) setVerbosity verbosity |
