]> git.phdru.name Git - phdru.name/phdru.name.git/commitdiff
Feat(dotfiles2html): Always remove `cgmem_nice`
authorOleg Broytman <phd@phdru.name>
Fri, 21 Aug 2020 07:38:36 +0000 (10:38 +0300)
committerOleg Broytman <phd@phdru.name>
Fri, 21 Aug 2020 07:38:36 +0000 (10:38 +0300)
dotfiles2html/dotfiles2html.py

index e8e52ae7437480897c39155457725dce661786b2..7c6f95a18734d8cc32ded20a9de8443911a7b516 100755 (executable)
@@ -5,6 +5,7 @@ __copyright__ = "Copyright (C) 2004-2020 PhiloSoft Design"
 
 import filecmp
 import os
+import re
 import shutil
 os.umask(0022) # octal; -rw-r--r--
 
@@ -79,6 +80,8 @@ def process_dotfile(i, fname, ftype, file_types):
     text = file.read()
     file.close()
 
+    text = re.sub('cgmem_nice \d+ ', '', text)
+
     if fname in ('mailcap', 'mc.ext', 'menu'):
         file = open(fname, 'w')
         text = text.replace('mplay', 'mplayer')