There was an error while loading. Please reload this page.
1 parent 781871d commit 6c862c4Copy full SHA for 6c862c4
1 file changed
.root/generate_site_assets.py
@@ -69,7 +69,8 @@ def get_versions(path):
69
if os.path.isdir(path):
70
list = []
71
for d in os.listdir(path):
72
- if os.path.isdir(d): list.append(d)
+ if os.path.isdir(os.path.join(path, d)):
73
+ list.append(d)
74
return list
75
76
# Main
0 commit comments