From bdd688d5e6d955536006328fa33f01881f4ec7e0 Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Sat, 31 May 2014 11:53:43 +0200 Subject: [PATCH] check_trans.py: Ignore Ctcp and Owner. Closes GH-630. --- sandbox/check_trans.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sandbox/check_trans.py b/sandbox/check_trans.py index 5b5eaac75..d57cda0ca 100755 --- a/sandbox/check_trans.py +++ b/sandbox/check_trans.py @@ -17,6 +17,8 @@ def main(): for plugin in os.listdir(directory): if plugin[0] not in 'AZERTYUIOPQSDFGHJKLMWXCVBN': continue + if plugin in ('Ctcp', 'Owner'): + continue checkPlugin(os.path.join(directory, plugin)) def changedir(f):