From: lottaviano Date: Thu, 2 Jul 2009 09:28:33 +0000 (+0000) Subject: File renamed. X-Git-Tag: 2.2.0~243 X-Git-Url: https://codewiz.org/gitweb?p=bertos.git;a=commitdiff_plain;h=9876100031fca94f51183db31ac0f94985feba71 File renamed. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@2725 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/doc/wizard-tag-filter.py b/doc/wizard-tag-filter.py deleted file mode 100644 index d944c106..00000000 --- a/doc/wizard-tag-filter.py +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/env python -from __future__ import with_statement -import re, sys - -if __name__ == "__main__": - expr = re.compile(r"\$WIZ\$.*$") - with file(sys.argv[1]) as f: - for line in f: - if re.search(expr, line) != None: - new_line = re.sub(expr, "", line) - sys.stdout.write(new_line) - else: - sys.stdout.write(line)