summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-07-06 13:31:53 -0400
committerrsiddharth <s@ricketyspace.net>2019-07-06 13:31:53 -0400
commit1464952fa984be6faa3009787a927b586cd079b8 (patch)
tree0397123d635253b1a127e43bcb0773f1b6637ee1 /bin
parentb3fe38f953fb2d9d1861566da2e54483d4fad558 (diff)
bin/html: Update write.
* bin/html (write): Set permission on file.
Diffstat (limited to 'bin')
-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)