aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-05 04:49:20 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2011-10-05 04:49:20 +0000
commit6bfe781ef0e44ac0aae8939e3f292907ad4d9b2c (patch)
tree0854cdb88792f22ed7ab3fede5e5f01d8f8c4acc /scripts
parent8301dff97b5b10680f6702bfaa186250f258de7d (diff)
added more harmless patterns to ignore
svn path=/trunk/; revision=15505
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/load_every_help.py9
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: