WIP
This commit is contained in:
parent
d1f7c1db63
commit
17d87d1ed2
4
app.py
4
app.py
|
@ -25,8 +25,8 @@ def current_website_dir():
|
||||||
else:
|
else:
|
||||||
global WEBSITE_DIRS
|
global WEBSITE_DIRS
|
||||||
try:
|
try:
|
||||||
WEBSITE_DIRS.remove('Escape')
|
WEBSITE_DIRS.remove(os.path.isdir(os.path.join(ROOT_DIR, 'Escape')))
|
||||||
WEBSITE_DIRS.remove('Marvel')
|
WEBSITE_DIRS.remove(os.path.isdir(os.path.join(ROOT_DIR, 'Marvel')))
|
||||||
except (ValueError, IndexError) as e:
|
except (ValueError, IndexError) as e:
|
||||||
pass
|
pass
|
||||||
website_dir = random.choice(WEBSITE_DIRS)
|
website_dir = random.choice(WEBSITE_DIRS)
|
||||||
|
|
Loading…
Reference in New Issue