diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-05 04:49:20 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-05 04:49:20 +0000 |
commit | 6bfe781ef0e44ac0aae8939e3f292907ad4d9b2c (patch) | |
tree | 0854cdb88792f22ed7ab3fede5e5f01d8f8c4acc /scripts | |
parent | 8301dff97b5b10680f6702bfaa186250f258de7d (diff) |
added more harmless patterns to ignore
svn path=/trunk/; revision=15505
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/load_every_help.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/load_every_help.py b/scripts/load_every_help.py index efa822bd..8f00791d 100755 --- a/scripts/load_every_help.py +++ b/scripts/load_every_help.py @@ -93,7 +93,13 @@ def remove_ignorelines(list): 'pique 0.1 for PD version 23\n', 'this is pddplink 0.1, 3rd alpha build...\n', 'beware! this is tot 0.1, 19th alpha build...\n', - 'foo: you have opened the [loadbang] help document\n' + 'foo: you have opened the [loadbang] help document\n', + 'print: bang\n', + 'print: 207\n', + 'print: 2 1\n', + 'obj3\n', + 'obj4 34\n', + 'initial_bang: bang\n', '\n' ] ignorepatterns = [ @@ -103,6 +109,7 @@ def remove_ignorelines(list): '[a-z]+ v0\.[0-9]', 'IOhannes m zm', 'part of zexy-', + 'Pd: 0.43.1-extended', 'based on sync from jMax' ] for ignore in ignorelines: |