mirror of
https://github.com/munki/munki.git
synced 2026-05-05 03:49:22 -05:00
Bug fix: os.mkdirs() should be os.makedirs() Silly Python.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user