mirror of
https://github.com/bvanroll/startrek-ml.git
synced 2025-08-29 12:02:45 +00:00
8 lines
183 B
Python
8 lines
183 B
Python
import sys, os
|
|
|
|
folder = sys.argv[1]
|
|
for file in os.listdir(folder):
|
|
print(file)
|
|
if(file.endswith('.html')):
|
|
os.system('FriendsConverter.py "' + folder+"/"+file+'"')
|