Bug fix: os.mkdirs() should be os.makedirs() Silly Python.

This commit is contained in:
Greg Neagle
2014-11-21 06:17:28 -08:00
parent 719429747d
commit ec3489d8b8
@@ -111,7 +111,7 @@ def html_dir():
cache_dir = u'/private/tmp'
our_cache_dir = os.path.join(cache_dir, bundle_id)
if not os.path.exists(our_cache_dir):
os.mkdirs(our_cache_dir)
os.makedirs(our_cache_dir)
_html_dir = os.path.join(our_cache_dir, 'html')
if os.path.exists(_html_dir):
# empty it