Skip to content

Commit

Permalink
Merge pull request #292 from code-management/289_lint_fix
Browse files Browse the repository at this point in the history
Fix linting issues from #289
  • Loading branch information
Shiva Poudel committed Mar 15, 2016
2 parents b5854fc + 6efeb95 commit 4a1918d
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 4a1918d

Please sign in to comment.