summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRiccardo Magliocchetti <riccardo.magliocchetti@gmail.com>2022-10-24 09:18:14 +0200
committerGitHub <noreply@github.com>2022-10-24 09:18:14 +0200
commit11fbf65cb6e8e759c6234ca9b9d218ce5f6b28dd (patch)
tree5f92e78031d62cc70d002a88c8a1c133de8b7c55
parent2fe305f88429b7e63aa69eaf34823f8c6f842ae3 (diff)
parent9098b83abed0aaa6bce9d48652b002e115dc55c1 (diff)
downloaduwsgi-11fbf65cb6e8e759c6234ca9b9d218ce5f6b28dd.tar.gz
Merge pull request #2496 from eleksir/fix_coroae_py2-ism
Use parentheses in print() statement.
-rw-r--r--plugins/coroae/uwsgiplugin.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/coroae/uwsgiplugin.py b/plugins/coroae/uwsgiplugin.py
index 83c2b25e..16da85bd 100644
--- a/plugins/coroae/uwsgiplugin.py
+++ b/plugins/coroae/uwsgiplugin.py
@@ -11,7 +11,7 @@ for p in search_paths:
coroapi = p
if not coroapi:
- print "unable to find the Coro perl module !!!"
+ print("unable to find the Coro perl module !!!")
sys.exit(1)
CFLAGS = os.popen('perl -MExtUtils::Embed -e ccopts').read().rstrip().split()