We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93bc669 commit e28aa09Copy full SHA for e28aa09
1 file changed
tools/cli/cloudmonkey/cachemaker.py
@@ -21,7 +21,7 @@
21
import os
22
import types
23
24
- from config import cache_file
+ from config import config_fields
25
except ImportError, e:
26
import sys
27
print "ImportError", e
@@ -168,6 +168,7 @@ def main(json_file):
168
f.close()
169
170
if __name__ == "__main__":
171
+ cache_file = config_fields['core']['cache_file']
172
print "[cachemaker] Pre-caching using user's cloudmonkey cache", cache_file
173
if os.path.exists(cache_file):
174
main(cache_file)
0 commit comments