Skip to content

Commit

Permalink
Merge pull request #30060 from rallytime/bp-27104
Browse files Browse the repository at this point in the history
Back-port #27104 to 2015.8
  • Loading branch information
Mike Place committed Dec 29, 2015
2 parents 87667e2 + f0566c4 commit cedee77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion salt/utils/cloud.py
Expand Up @@ -2780,7 +2780,7 @@ def missing_node_cache(prov_dir, node_list, provider, opts):
'''
cached_nodes = []
for node in os.listdir(prov_dir):
cached_nodes.append(node.replace('.p', ''))
cached_nodes.append(os.path.splitext(node)[0])

log.debug(sorted(cached_nodes))
log.debug(sorted(node_list))
Expand Down

0 comments on commit cedee77

Please sign in to comment.