Update to 1209099 and rename old komodo skill

This commit is contained in:
blitzmann
2017-11-12 16:52:56 -05:00
parent cacf286176
commit c4f41fb5fa
3 changed files with 5 additions and 3 deletions

View File

@@ -57,10 +57,12 @@ def main(old, new, groups=True, effects=True, attributes=True, renames=True):
implemented = set()
for filename in os.listdir(effectspath):
basename, extension = filename.rsplit('.', 1)
if filename.startswith("_") or not filename.endswith(".py"):
continue
basename, _ = filename.rsplit('.', 1)
# Ignore non-py files and exclude implementation-specific 'effect'
if extension == "py" and basename not in ("__init__",):
implemented.add(basename)
implemented.add(basename)
# Effects' names are used w/o any special symbols by eos
stripspec = "[^A-Za-z0-9]"