mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-23 02:49:27 +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):
|
for plugin in os.listdir(directory):
|
||||||
if plugin[0] not in 'AZERTYUIOPQSDFGHJKLMWXCVBN':
|
if plugin[0] not in 'AZERTYUIOPQSDFGHJKLMWXCVBN':
|
||||||
continue
|
continue
|
||||||
|
if plugin in ('Ctcp', 'Owner'):
|
||||||
|
continue
|
||||||
checkPlugin(os.path.join(directory, plugin))
|
checkPlugin(os.path.join(directory, plugin))
|
||||||
|
|
||||||
def changedir(f):
|
def changedir(f):
|
||||||
|
Loading…
Reference in New Issue
Block a user