about summary refs log tree commit diff
path: root/scratch/groceries/export.hs
diff options
context:
space:
mode:
Diffstat (limited to 'scratch/groceries/export.hs')
-rw-r--r--scratch/groceries/export.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/scratch/groceries/export.hs b/scratch/groceries/export.hs
index 5e2cce2237ee..c76033391d02 100644
--- a/scratch/groceries/export.hs
+++ b/scratch/groceries/export.hs
@@ -6,6 +6,6 @@ import qualified Data.List as L
 -- | Run this to export the grocery list.
 main :: IO ()
 main = do
-  x <- readFile "./list.txt"
+  x <- readFile "./list.org"
   x & lines & filter (not . L.isPrefixOf "- 0x") & unlines & putStrLn
   pure ()