]> git.armaanb.net Git - lightcards.git/blobdiff - lightcards/parse.py
Change shuffle/reverse logic
[lightcards.git] / lightcards / parse.py
old mode 100755 (executable)
new mode 100644 (file)
index d0b0eb5..9b1820a
@@ -1,4 +1,3 @@
-#!/usr/bin/env python
 # Parse markdown table into tuple of lists
 # Armaan Bhojwani 2021
 
@@ -15,7 +14,7 @@ def md2html(file):
         with open(file, "r", encoding="utf-8") as input_file:
             return markdown.markdown(input_file.read(), extensions=['tables'])
     except FileNotFoundError:
-        print(f"File \"{file}\" not found!")
+        print(f"lightcards: \"{file}\": No such file or directory")
         exit(1)