Files
basegame-vcko/python3-vckonline/lib/python3.8/site-packages/pop/mods/pop/verify.py
2020-11-03 18:30:14 -08:00

19 lines
378 B
Python

"""
Routines to verify the working environment etc.
"""
# Import python libs
import os
import pop.hub
def env(hub: "pop.hub.Hub"):
"""
Verify that the directories specified in the system exist
"""
for key in hub.opts:
if key.endswith("_dir"):
try:
os.makedirs(hub.opts[key])
except OSError:
pass