From e4ecedddde9f0180c34ab0492df5d7922ef63c85 Mon Sep 17 00:00:00 2001 From: Steven Recio Date: Tue, 26 Apr 2016 10:23:40 -0400 Subject: [PATCH] Fixed missing comma in last PR --- templates/gunicorn.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/gunicorn.erb b/templates/gunicorn.erb index 632c962f..7db470e5 100644 --- a/templates/gunicorn.erb +++ b/templates/gunicorn.erb @@ -32,7 +32,7 @@ CONFIG = { '--bind=<%= @bind %>', <% end -%> <% if @workers -%> - '--workers=<%= @workers %>' + '--workers=<%= @workers %>', <% else -%> '--workers=<%= @processorcount.to_i*2 + 1 %>', <% end -%>