Skip to content

Commit

Permalink
Fix linting issues from #289
Browse files Browse the repository at this point in the history
  • Loading branch information
David Hayes committed Mar 15, 2016
1 parent b5854fc commit 6efeb95
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion tests/gunicorn.pp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
bind => 'unix:/tmp/gunicorn.socket',
environment => 'prod',
appmodule => 'app:app',
osenv => { 'DBHOST' => 'dbserver.example.com' },
osenv => {
'DBHOST' => 'dbserver.example.com'
},
timeout => 30,
template => 'python/gunicorn.erb',
}
8 changes: 4 additions & 4 deletions tests/pyvenv.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
version => '3',
}

python::pyvenv { "/opt/uwsgi":
python::pyvenv { '/opt/uwsgi':
}

python::pip { "uwsgi":
ensure => "latest",
virtualenv => "/opt/uwsgi"
python::pip { 'uwsgi':
ensure => 'latest',
virtualenv => '/opt/uwsgi'
}

0 comments on commit 6efeb95

Please sign in to comment.