Skip to content

Commit

Permalink
[#87] Add positional argument for format() for 2.6 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
markbirbeck committed Mar 14, 2012
1 parent 03abd07 commit b6e4676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion littlechef/solo.py
Expand Up @@ -75,7 +75,7 @@ def configure(current_node=None):
node_work_path))
# Set up chef solo configuration
if not exists(logging_path):
sudo('mkdir -p {}'.format(logging_path))
sudo('mkdir -p {0}'.format(logging_path))
if not exists('/etc/chef'):
sudo('mkdir -p /etc/chef')
# Set parameters and upload solo.rb template
Expand Down

0 comments on commit b6e4676

Please sign in to comment.