mirror of
https://github.com/Erreur32/cheat.git
synced 2024-10-31 21:11:07 +01:00
Allow suffixes for cheat files (e.g. DataFrames.jl).
This commit is contained in:
parent
1e26280da7
commit
9140d2ebfb
2
cheat
2
cheat
@ -23,7 +23,7 @@ def cheat_files(cheat_directories):
|
||||
cheats = {}
|
||||
for cheat_dir in reversed(cheat_directories):
|
||||
cheats.update(dict([ (cheat, cheat_dir)\
|
||||
for cheat in os.listdir(cheat_dir) if '.' not in cheat ]))
|
||||
for cheat in os.listdir(cheat_dir) if not cheat.startswith('.')]))
|
||||
return cheats
|
||||
|
||||
def main():
|
||||
|
Loading…
Reference in New Issue
Block a user