Skip to content

Commit 27d4fe4

Browse files
authored
uwsgi: Use language-specific heredocs
1 parent eacab62 commit 27d4fe4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Formula/u/uwsgi.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,11 +91,11 @@ def install
9191
end
9292

9393
test do
94-
(testpath/"helloworld.py").write <<~EOS
94+
(testpath/"helloworld.py").write <<~PYTHON
9595
def application(env, start_response):
9696
start_response('200 OK', [('Content-Type','text/html')])
9797
return [b"Hello World"]
98-
EOS
98+
PYTHON
9999

100100
port = free_port
101101

0 commit comments

Comments
 (0)