diff options
Diffstat (limited to 'support/scripts/checkpackagebase.py')
-rw-r--r-- | support/scripts/checkpackagebase.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/support/scripts/checkpackagebase.py b/support/scripts/checkpackagebase.py new file mode 100644 index 0000000000..e4c664d24c --- /dev/null +++ b/support/scripts/checkpackagebase.py @@ -0,0 +1,16 @@ +# See support/scripts/check-package.txt before editing this file. + + +class _CheckFunction(object): + def __init__(self, filename, url_to_manual): + self.filename = filename + self.url_to_manual = url_to_manual + + def before(self): + pass + + def check_line(self, lineno, text): + pass + + def after(self): + pass |