mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-22 18:39:31 +01:00
check_trans.py: Ignore Ctcp and Owner. Closes GH-630.
This commit is contained in:
parent
bd0a077482
commit
bdd688d5e6
@ -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):
|
||||
|
Loading…
Reference in New Issue
Block a user