#86 DevConfiguration has except-pass for mkdir target_dir
Closed Opened by puiterwijk.

In server/conf/config.py, we find this:

try:                 
    mkdir(TARGET_DIR)
except:              
    pass             

Which is suboptimal, as it might make the dev environment crash for unknown reasons.
I would suggest something like:

if not os.path.exists(TARGET_DIR):
    mkdir(TARGET_DIR)

fix is included in #119

Metadata Update from @qwan:
- Issue status updated to: Closed (was: Open)

This issue has been migrated to Fedora Forge:
https://forge.fedoraproject.org/pungi/odcs/issues/86

Please continue any further discussion there.

Metadata