summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bin/html5
1 files changed, 5 insertions, 0 deletions
diff --git a/bin/html b/bin/html
index 80548b3..1c896b9 100644
--- a/bin/html
+++ b/bin/html
@@ -9,6 +9,7 @@ import datetime
import os
import os.path
import re
+import stat as st
import subprocess as subp
import sys
@@ -66,6 +67,10 @@ def write(p, c):
with open(p, 'w') as f:
f.write(c)
+ os.chmod(p, st.S_IRUSR | st.S_IWUSR | st.S_IXUSR
+ | st.S_IRGRP | st.S_IXGRP
+ | st.S_IROTH | st.S_IXOTH)
+
def slug(p):
m = re.search(r'([a-zA-Z\-]+)\.md', p)