This commit is contained in:
2018-04-17 12:05:48 +02:00
parent 14edc0e745
commit 58a1260003
428 changed files with 41350 additions and 477 deletions

View File

@@ -9,11 +9,11 @@ end=50.0
step=40
for d in os.listdir(tutorial_path):
for d in sorted(os.listdir(tutorial_path)):
p = tutorial_path + d
if os.path.isdir(p):
print p
for f in os.listdir(p):
for f in sorted(os.listdir(p)):
try:
script = p + "/" + f
print "\n----------------------------------------------------------------------------------------------------"